kemal/samples/hello_world.cr

9 lines
124 B
Crystal

require "kemal"
# Set root. If not specified the default content_type is 'text'
get "/" do
"Hello Kemal!"
end
Kemal.run