Category:Curses: Difference between revisions

Content added Content deleted
m (code.google.com going away)
(Add installation instruction for the common lisp ncurses binding)
 
Line 12: Line 12:


* '''C''' <lang c>#include <curses.h></lang> Then link the program with <code>-lcurses</code>. (Some old or strange systems might need <code>-lcurses -ltermlib</code>.)
* '''C''' <lang c>#include <curses.h></lang> Then link the program with <code>-lcurses</code>. (Some old or strange systems might need <code>-lcurses -ltermlib</code>.)

* '''Common Lisp''' <lang lisp>;; After installing the quicklisp library manager
(ql:quickload :croatoan)</lang>

* '''Ruby''' <lang ruby>require 'curses'</lang>
* '''Ruby''' <lang ruby>require 'curses'</lang>

* '''Go''' <lang go>import "github.com/gbin/goncurses"</lang>There are a number of curses bindings for Go. This one is popular.
* '''Go''' <lang go>import "github.com/gbin/goncurses"</lang>There are a number of curses bindings for Go. This one is popular.