Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
20
Task/Boolean-values/EGL/boolean-values.egl
Normal file
20
Task/Boolean-values/EGL/boolean-values.egl
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
myBool boolean = 0;
|
||||
SysLib.writeStdout("myBool: " + StrLib.booleanAsString(myBool));
|
||||
myBool = 1;
|
||||
SysLib.writeStdout("myBool: " + StrLib.booleanAsString(myBool));
|
||||
myBool = 2;
|
||||
SysLib.writeStdout("myBool: " + StrLib.booleanAsString(myBool));
|
||||
myBool = false;
|
||||
SysLib.writeStdout("myBool: " + StrLib.booleanAsString(myBool));
|
||||
myBool = true;
|
||||
SysLib.writeStdout("myBool: " + StrLib.booleanAsString(myBool));
|
||||
myInt int = 0;
|
||||
SysLib.writeStdout("myInt: " + StrLib.booleanAsString(myInt));
|
||||
myInt = 1;
|
||||
SysLib.writeStdout("myInt: " + StrLib.booleanAsString(myInt));
|
||||
myInt = 2;
|
||||
SysLib.writeStdout("myInt: " + StrLib.booleanAsString(myInt));
|
||||
myInt = false;
|
||||
SysLib.writeStdout("myInt: " + StrLib.booleanAsString(myInt));
|
||||
myInt = true;
|
||||
SysLib.writeStdout("myInt: " + StrLib.booleanAsString(myInt));
|
||||
Loading…
Add table
Add a link
Reference in a new issue