rexx-things/projects/oorexx/text-attrs.rex

28 lines
538 B
Rexx
Raw Normal View History

2025-03-12 20:50:48 +00:00
#!/usr/bin/env rexx
lf = .window~ASCII_LF~d2c()
bs = .window~ASCII_BS~d2c()
2025-03-17 23:22:49 +00:00
text = .array~of('One', 'Two', 'Three', 'Four', 'Five')
2025-03-12 20:50:48 +00:00
scr = .window~new()
do a = 1 to text~items()
do b = 1 to text~items()
if b = a then scr~attrset(scr~A_BOLD + scr~A_UNDERLINE)
scr~addstr(text[b])
if b = a then scr~attroff(scr~A_BOLD + scr~A_UNDERLINE)
scr~addch(' ')
end
scr~addstr(bs || lf)
end
/* Forces a pause to wait for input. Poor man's wait. */
scr~getch
scr~endwin
Exit
2025-03-17 23:22:49 +00:00
::requires "ncurses.cls"