Files
el/lang/examples/hello.el
2026-05-05 01:38:51 -05:00

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")