Common lisp interface to bearlibterminal https://bitbucket.org/cfyzium/bearlibterminal. Created with https://github.com/rpav/cl-autowrap.
(in-package :bearlibterminal-examples) (require :bearlibterminal) (defun hello-world () "Simple hello world terminal example" (terminal-open) (terminal-print 1 1 "Hello, world!") (terminal-refresh) (loop while (not (equal (terminal-read) bearlibterminal-ffi:+tk-close+))) (terminal-close))