1
Fork 0
mirror of https://github.com/RGBCube/color.v synced 2025-07-30 17:37:45 +00:00

Delete test.v

This commit is contained in:
RGBCube 2022-12-02 20:34:03 +03:00 committed by RGBCube
parent 9c94780d96
commit 8a58e55eff

17
test.v
View file

@ -1,17 +0,0 @@
module main
import color
fn main() {
color.red.println('Hello World')
color.black.println_bg('Hello World')
color.bold.println('Hello World')
brush := color.new_brush(
fg: color.rgb(0, 0, 0)
bg: color.hex(0xffffff)
styles: [color.bold, color.dim, color.italic]
)
brush.println('Hello World')
}