13 lines
263 B
Text
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 )
|