13 lines
127 B
Go
13 lines
127 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.kirsle.net/go/ui/eg/layout"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("Hello world")
|
|
layout.main()
|
|
}
|