sapphire/examples/new-syntax.sp

10 lines
178 B
SourcePawn
Raw Normal View History

2022-08-25 08:01:14 +00:00
const { io } from @'core/io';
2022-06-09 15:24:50 +00:00
2022-08-25 08:01:14 +00:00
const good_food : String = 'watermelon';
2022-06-09 15:24:50 +00:00
2022-08-26 16:19:45 +00:00
let @main : i32 in {
2022-06-09 15:24:50 +00:00
io.outln('Hello world!');
io.outf('My favorite food is %s\n',good_food);
}