RosettaCodeData/Task/Terminal-control-Inverse-video/Forth/terminal-control-inverse-video.fth
2023-07-01 13:44:08 -04:00

5 lines
148 B
Forth

: Reverse #27 emit "[7m" type ;
: Normal #27 emit "[m" type ;
: test cr Reverse ." Reverse " cr Normal ." Normal " ;
test