sapphire/examples/new-syntax.sp
2022-08-25 10:01:14 +02:00

10 lines
172 B
SourcePawn

const { io } from @'core/io';
const good_food : String = 'watermelon';
let @main in {
io.outln('Hello world!');
io.outf('My favorite food is %s\n',good_food);
}