blob: b8a9b9c1284e3d34f84bef32a57a92a2a665808f (
plain)
1
2
3
4
5
6
7
8
|
# Build Sloth
cargo build
# Compile standard library
./target/debug/sloth std/stdio.sloth std/stdlib.sloth std/stdmath.sloth "$1"
# Generate binary
clang output.o std/stdio.c std/stdlib.c std/stdmath.c -o program
|