Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 286 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 286 Bytes

Harp

The Harp Programming Language

let two := 2

let dictionary #[:hello "world" :another "value"]

fun double (val) { 
    val * two 
}

fun world () { dictionary.:hello }

fun helloWorld () {
    print("Hello " world() ": " double(32))
    print(dictionary.("another"))
}