File: hello_5.tiny

package info (click to toggle)
pyparsing 3.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 12,200 kB
  • sloc: python: 30,867; ansic: 422; sh: 112; makefile: 24
file content (11 lines) | stat: -rw-r--r-- 185 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
int main()
{
    int i := 5;
    string name := "World";
    string msg := "Hello " + name +"!";
    repeat
        write msg + "\n";
        i := i - 1;
    until i = 0
    return 0;
}