RosettaCodeData/Task/Terminal-control-Coloured-text/FunL/terminal-control-coloured-text.funl
2023-07-01 13:44:08 -04:00

13 lines
263 B
Text

import console.*
bold()
blink()
if $os.toLowerCase().startsWith( 'win' )
println( 'not supported' )
else
println( 'good to go' )
reset()
println( RED + 'Red', GREEN + 'Green', BLUE + 'Blue', MAGENTA + 'Magenta', CYAN + 'Cyan', YELLOW + 'Yellow' + RESET )