Files
el/examples/hello.el
T

9 lines
178 B
EmacsLisp

// hello.el The simplest Engram program.
// Run with: el run hello.el
fn greet(name: String) -> String {
return "Hello, " + name
}
let message: String = greet("World")