You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
251 B
13 lines
251 B
5 years ago
|
if [ 10 > 9 ]:
|
||
|
|
||
|
printf [ "ten is bigger than 9" ];,
|
||
|
new_int = 10;
|
||
|
|
||
|
if [ {int} new_int > 9 ]:
|
||
|
|
||
|
printf [ "new_int is bigger than 9!" ];,
|
||
|
another_int = 100;
|
||
|
|
||
|
if [ {int} another_int > 1000 ]:
|
||
|
|
||
|
printf [ "this wont print!" ];
|