Spaces:
Sleeping
Sleeping
| // hello.cl — Basic CL program (Milestone 1 & 2 & 3 demo) | |
| int x; | |
| x = 5; | |
| x = x + 2; | |
| if x > 3 then { | |
| x = x - 1; | |
| } | |
| string name; | |
| name = "Alice"; | |
| // hello.cl — Basic CL program (Milestone 1 & 2 & 3 demo) | |
| int x; | |
| x = 5; | |
| x = x + 2; | |
| if x > 3 then { | |
| x = x - 1; | |
| } | |
| string name; | |
| name = "Alice"; | |