diff options
Diffstat (limited to 'bird.conf')
-rw-r--r-- | bird.conf | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -14,7 +14,7 @@ function callme (int arg1; int arg2;) case arg1 { 2: print "dva"; print "jeste jednou dva"; - [ 3 .. 5 ]: print "tri az pet"; + 3 .. 5: print "tri az pet"; else: print "neco jineho"; } } @@ -40,8 +40,11 @@ prefix px; print "Testing prefixes: 1.2.3.4/18 = " px; print "Testing pairs: (1,2) = " (1,2); + print "What will this do? " [ 1, 2, 1, 1, 1, 3, 4, 1, 1, 1, 5 ]; + print "Testing functions..."; - callme ( 1, 2 ); +# callme ( 1, 2 ); + callme ( 2, 2 ); callme ( 2, 2 ); callme ( 3, 2 ); callme ( 4, 2 ); |