Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 738 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 738 Bytes

silic logo

A tiny systems langauge with an emphasis on simplicity.

Static Badge Static Badge

Note

The language is still early in development and is subject to change.

Documentation

todo...

Building

git clone --recurse-submodules https://gitea.com/cohnon/silic

cd silic

make && ./silic examples/main.sil

Examples

hello_world.sil

use io;

pub func main() {
    io:println("hello world");
}