We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Input: Input value for the SGL-parser
AST: Abstract Syntax Tree, built with ANTLR
Debug: Debugging messages
Output: Storyboard code (nothing yet)
Input: int x = 3
int x = 3
AST:
Debug: Push local variable: int,x,3
Push local variable: int,x,3
Input: int x = 3+4*2-8/10
int x = 3+4*2-8/10
Debug: Push local variable: int,x,11
Push local variable: int,x,11
Input: int x = (3+4)*-(2-3)
int x = (3+4)*-(2-3)
Debug: Push local variable: int,x,7
Push local variable: int,x,7
Input:
int x = 4+3 int a = 5*x
Debug:
Push local variable: int,x,7 Try to get variable: x Push local variable: int,a,35`
There was an error while loading. Please reload this page.