cl-compiler / samples /hello.cl
GitHub Actions
Sync from GitHub: fe8c57c
e3486fe
Raw
History Blame Contribute Delete
150 Bytes
// 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";