kemal/samples/hello_world.cr
2015-10-24 22:57:40 +03:00

7 lines
113 B
Crystal

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