mirror of
https://github.com/SourceFellows/gobuch.git
synced 2026-07-03 19:37:06 +02:00
initial import
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
type Tester struct {
|
||||
Name string
|
||||
Alter int
|
||||
Sonstwas string
|
||||
}
|
||||
|
||||
func main() {
|
||||
|
||||
t := &Tester{Name: "Dingo", Alter: 3, Sonstwas: "Wert"}
|
||||
fmt.Printf("%+v\n", t)
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user