You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, you can assign to compile-time variables in module scope, but you can't call compile-time functions or builtin functions without doing something hacky:
namespace example
# This is not allowed, but should be
@something()
# This is allowed, but not ideal
&a = @something()
This should probably have the same restrictions as #13
The text was updated successfully, but these errors were encountered:
Currently, you can assign to compile-time variables in module scope, but you can't call compile-time functions or builtin functions without doing something hacky:
This should probably have the same restrictions as #13
The text was updated successfully, but these errors were encountered: