elysium/example/add.lang
2024-03-17 19:55:28 +01:00

5 lines
49 B
Plaintext

u8 add(u8 a, u8 b) {
u8 c = b;
return a + b;
}