8 lines
138 B
Plaintext
8 lines
138 B
Plaintext
// New types, type-casting
|
|
|
|
import std::print;
|
|
|
|
let text: string = "hello there!";
|
|
let value: i16 = 123;
|
|
|
|
print(text + (value as string)); |