blob: 8bdc33668352f102aabaa61ceb23111400f4fd04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//! wipe - Clear the terminal screen
const io = @import("io");
const sys = @import("sys");
export fn main(pc: u32, pv: [*]const [*:0]const u8) u8 {
_ = pc;
_ = pv;
io.wipe();
return 0;
}
|