2021-12-18 12:06:50 -06:00
|
|
|
use pancurses::{endwin, initscr};
|
|
|
|
|
2021-12-18 11:58:33 -06:00
|
|
|
fn main() {
|
2021-12-18 12:06:50 -06:00
|
|
|
let window = initscr();
|
|
|
|
window.printw("Hello World!");
|
|
|
|
window.refresh();
|
|
|
|
window.getch();
|
|
|
|
endwin();
|
2021-12-18 11:58:33 -06:00
|
|
|
}
|