kemal/examples/hello-world/app.cr
2025-08-13 16:20:05 +03:00

7 lines
60 B
Crystal

require "kemal"
get "/" do
"Hello Kemal!"
end
Kemal.run