예제 #1
0
파일: govimda.go 프로젝트: rbonvall/govimda
func main() {
	screen.Init()

	e := editor.New()
	e.Draw()
	screen.Refresh()

	go screen.WaitForInput(e.Command)
	e.MainLoop()
	screen.Close()
}
예제 #2
0
파일: kernel.go 프로젝트: ullutau/daria
func Load() {
	screen.Init()
	screen.Clear()
	screen.PrintStr("Hello world!")
}