apio
f1668853dd
Planning to use LLVM to make stuff easier. Also, moved the random sapphire stuff to actual examples in an actual examples/ folder. Also started a standard library even if the compiler is not ready, because why not?? Also, it helps the examples.
8 lines
111 B
SourcePawn
8 lines
111 B
SourcePawn
import core/io;
|
|
|
|
@main {
|
|
i32 age = 64;
|
|
io.out('I am ');
|
|
io.out(age);
|
|
io.outln(' years old.');
|
|
} |