1
0

Initial Commit

This commit is contained in:
2021-03-28 20:25:57 +01:00
commit 3a721ac0b4
9 changed files with 127 additions and 0 deletions

8
node.go Normal file
View File

@@ -0,0 +1,8 @@
package main
const MAX_EDGES int = 3
type Node struct {
Data City
Edges [MAX_EDGES]Edge
}