Silk

High performance language with formal verification built in.

Silk is a high performance general purpose programming language with formal verification built in. Silk targets computer systems, mobile / tablet devices, WASM / WASI runtimes, and the web.

Hello world
Guide
import std::io::println;

fn main () -> int {
  println("hello from silk");
  return 0;
}
silk check hello.slk
silk test hello.slk
silk build hello.slk -o build/hello