Skip to content

Instantly share code, notes, and snippets.

@sjl
Created February 16, 2014 00:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sjl/9027448 to your computer and use it in GitHub Desktop.
Save sjl/9027448 to your computer and use it in GitHub Desktop.
(require '[lanterna.screen :as s])
(def scr (s/get-screen))
(s/start scr)
(s/put-string scr 10 10 "Hello, world!")
(s/put-string scr 10 11 "Press any key to exit!")
(s/redraw scr)
(s/get-key-blocking scr)
(s/stop scr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment