Skip to content

frostlang/frost

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

❄️ frost

frost programming language

About

frost is a programming language with a focus on low-friction systems programming.

Example


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);

}

🔨 building

frost uses CMake as the build system, currently ninja is used as the target generator

windows

cd toolchain
build_and_run.bat

linux

cd toolchain
build_and_run.sh

About

frost programming language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages