frost programming language
frost is a programming language with a focus on low-friction systems programming.
import("io");
@debuggable
Person : type {
name : String;
age : U8;
}
main : pub fn (args : []String){
person : const Person = {
args[0],
args[1].to_u8()
};
io.println(person);
}
frost uses CMake as the build system, currently ninja is used as the target generator
cd toolchain
build_and_run.bat
cd toolchain
build_and_run.sh