Skip to content

Instantly share code, notes, and snippets.

@joekarma
Created October 27, 2012 18:47
Show Gist options
  • Select an option

  • Save joekarma/3965651 to your computer and use it in GitHub Desktop.

Select an option

Save joekarma/3965651 to your computer and use it in GitHub Desktop.
Hello World in RESTAS
(restas:define-module :hello-world-app
(:use :cl :cl-who))
(in-package :hello-world-app)
(restas:define-route index ("/")
(with-html-output-to-string (s)
(:html
(:head
(:title "Hello World!"))
(:body
(:h1 "Hello, World!")))))
(restas:start :hello-world-app
:port 8080
:hostname "localhost")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment