Added more to the GIB docs.

This commit is contained in:
Brian Koropoff 2003-02-23 03:20:53 +00:00
parent c026e61d22
commit d85639d65e
5 changed files with 469 additions and 10 deletions

5
doc/gib/if-else.gib Normal file
View file

@ -0,0 +1,5 @@
if 0 {
echo Condition is true.
} else {
echo Condition is false.
}