const io from @'core/io';
let @main in {
let age : i32 = 64;
io.out('I am ');
io.out(age);
io.outln(' years old.');
}