reid-llvm/hard.reid

8 lines
138 B
Plaintext
Raw Normal View History

2023-07-27 16:40:12 +02:00
// New types, type-casting
import std::print;
let text: string = "hello there!";
let value: i16 = 123;
print(text + (value as string));