Files
kiss-vscode/projects/nat-globelet-playground/src/nat_globelet_playground/Main.kiss

6 lines
190 B
Plaintext

(let [app (Express.call)
port 3000]
(app.get "/" ->[req res next] (res.send "Hello World!"))
(app.listen port ->(print "kiss-express listening at http://localhost:$port")))