RosettaCodeData/Task/Terminal-control-Coloured-text/FunL/terminal-control-coloured-text.funl
2016-12-05 23:44:36 +01: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 )