Copy-paste fix pattern
library CB-Render
fn main() {
init_window(640, 360, "ClosedBit Window")
clear(0x071018)
draw_text(24, 24, "Ready", 0xFFFFFF, 24)
swap_buffers_fast()
}
ClosedBit Docs
ClosedBit error docs
Unknown function. A function call is not built in, not defined in the source, and not exported by a loaded library.
A function call is not built in, not defined in the source, and not exported by a loaded library.
Add the required library, define the function before calling it, or correct the function name.
library CB-Render
fn main() {
init_window(640, 360, "ClosedBit Window")
clear(0x071018)
draw_text(24, 24, "Ready", 0xFFFFFF, 24)
swap_buffers_fast()
}