adding condition to if statement

new syntax is if_true( . .. . )
where any string is allowed in case of true
This commit is contained in:
Torsten Ruger
2015-10-19 15:10:38 +03:00
parent 72ed05254e
commit 7cc7ab5c18
10 changed files with 18 additions and 13 deletions

View File

@ -1,5 +1,5 @@
int ofthen(int n)
if(0)
if_plus(0)
isit = 42
else
maybenot = 667

View File

@ -1,5 +1,5 @@
int retvar(int n)
if( n > 5)
if_positive( n - 5)
return 10
else
return 20