Hello World



examples/kemal/src/hello_world.cr
require "kemal"

get "/" do
  "Welcome to Kemal"
end

Kemal.run

crystal src/hello_world.cr


http://localhost:3000/