Implement basic functions (no parameters yet)
This commit is contained in:
13
IBAF-Tests/IBAF-1/basicControlFlow.ibaf
Normal file
13
IBAF-Tests/IBAF-1/basicControlFlow.ibaf
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
if (true) {
|
||||
print(true);
|
||||
}else{print(false);}
|
||||
|
||||
|
||||
|
||||
int i = 0;
|
||||
|
||||
while (i < 10) {
|
||||
i = i+1;
|
||||
print(i);
|
||||
}
|
||||
Reference in New Issue
Block a user