forked from AbleOS/ableos
12 lines
311 B
Plaintext
12 lines
311 B
Plaintext
|
stn := @use("../../../libraries/stn/src/lib.hb");
|
||
|
.{string, memory, buffer} := stn
|
||
|
|
||
|
horizon_api := @use("../../../libraries/horizon_api/src/lib.hb");
|
||
|
.{create_window} := horizon_api
|
||
|
|
||
|
main := fn(): int {
|
||
|
windowing_system_buffer := buffer.create("XHorizon\0")
|
||
|
|
||
|
create_window(windowing_system_buffer)
|
||
|
return 0
|
||
|
}
|