A general-purpose dataflow programming language with static types and implicit parallelism. Compiles to machine code and Go.

import { fmt }

def Main(start any) (stop any) {
    println fmt.Println
    ---
    :start -> { 'Hello, World!' -> println -> :stop }
}