Basic go program

Run Settings
LanguageGo
Language Version
Run Command
package main import ( "fmt" ) func main() { user := User{Name: "Colin",Age: 45} user.Say("-") } type User struct { Name string Age int } func (u User) Say (addText string){ fmt.Println(addText,u.Name) fmt.Println(addText,u.Age) }
Editor Settings
Theme
Key bindings
Full width
Lines