Skip to content

Instantly share code, notes, and snippets.

@pmsanford
Created November 27, 2014 18:53
Show Gist options
  • Save pmsanford/00a6bd8ee753387c0222 to your computer and use it in GitHub Desktop.
Save pmsanford/00a6bd8ee753387c0222 to your computer and use it in GitHub Desktop.
#![feature(globs)]
extern crate ncurses;
use ncurses::*;
fn main()
{
initscr();
let tname = termname();
printw(tname.as_slice());
refresh();
getch();
endwin();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment