~alterae/chl

another attempt at a programming language
32219fd2 — Michelle S 4 months ago
Add syntax example
dea066b7 — Michelle S 4 months ago
Initial commit

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~alterae/chl
read/write
git@git.sr.ht:~alterae/chl

You can also use your local clone with git send-email.

#chl — chell's language

Yet another attempt at making a programming language.

#syntax example

use std:io

name := "world"

greet := (name Str) Str {
    "Hello, {name}!"
}

main := () {
    greeting := greet(name)

    io:println(greeting)
}