rexx-things/projects/oorexx/minimal_ncurses.rex

17 lines
283 B
Rexx
Raw Normal View History

2025-03-12 20:50:48 +00:00
#!/usr/bin/env rexx
/* minimal_ncurses.rex - Draw a box using raw ncurses functions */
do
call initscr
call noecho
call cbreak
win = newwin(10, 20, 5, 10)
call box win, 0, 0
call wrefresh win
call getch
call endwin
end
Exit
::requires "ncurses.cls"