X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=examples%2Fhigh.spl;h=bee8ccb25d26f4043a585701abd925918a1e0870;hb=53c97f5e2ed9c8b4364bac1dedc7e482af583787;hp=6750769b83beb983ed1359b2d7c037731f35f72e;hpb=b86517f1b390cf8fd13611aef6e65b472ff7e813;p=cc1516.git diff --git a/examples/high.spl b/examples/high.spl index 6750769..bee8ccb 100644 --- a/examples/high.spl +++ b/examples/high.spl @@ -3,7 +3,11 @@ plus(x, y) { } main (){ - - var f = plus(); + var a = read; + var b = read(); + var c = plus; + var d = plus(1); + var e = plus(1, 2); + var f = d(41); return 5; }