about summary refs log tree commit diff
path: root/main.go
blob: c06fc8f738823ff10161caa48e38efe78ff36a35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package main

import (
	"./structs"
	"fmt"
)

func main() {
	// the slice starsSlice stores the star structures
	starsSlice := []structs.Star{
		{structs.Coord{X: 100, Y: 100}, structs.Force{0, 0}, 1000},
	}

	fmt.Println(starsSlice)
}