mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
11 lines
145 B
Nim
11 lines
145 B
Nim
discard """
|
|
action: "compile"
|
|
"""
|
|
|
|
import terminal
|
|
|
|
proc test() {.raises:[IOError, ValueError].} =
|
|
setBackgroundColor(stdout, bgRed)
|
|
|
|
test()
|