15 lines
239 B
Go
15 lines
239 B
Go
package main
|
|
|
|
import "log"
|
|
import blt "bearlibterminal"
|
|
|
|
func main() {
|
|
log.Println("Starting...")
|
|
blt.Open()
|
|
defer blt.Close()
|
|
blt.Print(1, 1, "Hello, world!")
|
|
blt.Refresh()
|
|
for blt.Read() != blt.TK_CLOSE {
|
|
|
|
}
|
|
} |