DEBSOURCES
Skip Quicknav
sources / pyparsing / 3.3.2-1 / examples / tiny / samples / hello_5.tiny
1234567891011
int main() { int i := 5; string name := "World"; string msg := "Hello " + name +"!"; repeat write msg + "\n"; i := i - 1; until i = 0 return 0; }