2017-08-15

This commit is contained in:
2017-08-15 17:06:46 -05:00
parent 297afbe06b
commit 3b6d381185
4 changed files with 49 additions and 4 deletions

BIN
go/pov/cmd/cmd Executable file

Binary file not shown.

13
go/pov/cmd/main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import pov ".."
func main() {
g := pov.New()
g.AddNode("sibling")
g.AddNode("x")
g.AddNode("parent")
g.AddArc("parent", "sibling")
g.AddArc("parent", "x")
pov.PrintGraph(g)
}