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
For some reason, having two or more !def lines causes all but the first not to work. The !def lines are excluded from the output, but the text is not replaced. For example, this code:
!def t1 test1
!def t2 test2
func main
say t1
say t2
end
Compiles to:
say test1say t2
The text was updated successfully, but these errors were encountered:
For some reason, having two or more
!def
lines causes all but the first not to work. The!def
lines are excluded from the output, but the text is not replaced. For example, this code:Compiles to:
The text was updated successfully, but these errors were encountered: