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
The api does not accept lowercase true and false only True and False.
comeAlive(index) -> [alive <- True];
Works whereas
comeAlive(index) -> [alive <- true];
throws
Command failed: tsl synthesize -i tmp.tsl --js
tsl: "True" cannot be part of an AST.
CallStack (from HasCallStack):
error, called at src/TSL/HOA/Codegen.hs:198:29 in tsl-2.0.0.0-9Ku6Ii70Jk0421RpU1dhV9:TSL.HOA.Codegen
The text was updated successfully, but these errors were encountered:
As a stopgap, it may be nice to add a preprocessor and throw a warning if we see either true or True in the spec. Really neither should be there (yet).
The api does not accept lowercase true and false only True and False.
Works whereas
throws
The text was updated successfully, but these errors were encountered: