elysium/example/add.lang

5 lines
49 B
Plaintext
Raw Normal View History

2024-03-17 19:55:28 +01:00
u8 add(u8 a, u8 b) {
u8 c = b;
return a + b;
}