1
Fork 0
mirror of https://github.com/RGBCube/color.v synced 2025-07-31 09:57:47 +00:00

Delete builder error files

This commit is contained in:
RGBCube 2022-11-19 19:06:02 +03:00
parent 87e89ced3f
commit 634607531c
2 changed files with 0 additions and 21 deletions

View file

@ -1,8 +0,0 @@
module main
import color
fn main() {
color.red.cprintln('Hello World')
color.bold.cprintln('Hello World')
}

View file

@ -1,13 +0,0 @@
module main
import color
fn main() {
brush := color.new_brush(
fg: color.rgb(0, 0, 0)!
bg: color.hex(0xffffff)!
style: [color.bold, color.underline, color.italic]
)!
brush.cprintln('Hello World')
}