bob
bob copied to clipboard
The Bob Programming Language
Results
2
bob issues
Sort by
recently updated
recently updated
newest added
Great to find this. Thank you. https://github.com/dbetz/bob/blob/master/test/test.bob#L144: is this a typo? ``` @@ -141,9 +141,13 @@ define main() obj3 = new obj1(); stdout.Display("obj3", obj3, "\n"); - obj3,Show(); + obj3.Show(); ```...
continue statement must go to the update part of the for loop, not in the expr. ``` bobcom.c funtion void do_for(BobCompiler *c) ... //replace addcontinue(c,¢ry,nxt); by addcontinue(c, ¢ry, update); ```