![]() |
|
REPEAT UNTIL (solved) - Printable Version +- Boriel Basic Forum (https://forum.boriel.com) +-- Forum: Compilers and Computer Languages (https://forum.boriel.com/forumdisplay.php?fid=12) +--- Forum: ZX Basic Compiler (https://forum.boriel.com/forumdisplay.php?fid=11) +---- Forum: Wishlist (https://forum.boriel.com/forumdisplay.php?fid=14) +---- Thread: REPEAT UNTIL (solved) (/showthread.php?tid=2252) |
REPEAT UNTIL (solved) - zarsoft - 2022-11-28 Hi I'd like to use the Pascal mode because it's simpler: Code: REPEATI dont like to use: Code: DORE: REPEAT UNTIL - boriel - 2022-11-29 It's the standard Syntax for most modern BASIC languages nowadays: FreeBasic: https://www.freebasic.net/wiki/KeyPgLoop Visual Basic .NET: https://learn.microsoft.com/en-us/dotnet/visual-basic/language-reference/statements/do-loop-statement RE: REPEAT UNTIL - zarsoft - 2022-11-30 (2022-11-29, 04:28 PM)boriel Wrote: It's the standard Syntax for most modern BASIC languages nowadays: Then, I will do it with #define : Code: #define REPEAT DORE: REPEAT UNTIL - boriel - 2022-11-30 (2022-11-30, 11:37 AM)zarsoft Wrote:(2022-11-29, 04:28 PM)boriel Wrote: It's the standard Syntax for most modern BASIC languages nowadays: Very smart!!
|