kemal/samples/hello_world.cr

7 lines
113 B
Crystal

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