work-in-progress on a new sim

This commit is contained in:
Arceliar 2020-04-26 07:33:03 -05:00
parent 78b5f88e4b
commit 9c818c6278
5 changed files with 168 additions and 1 deletions

15
cmd/yggdrasilsim/main.go Normal file
View file

@ -0,0 +1,15 @@
package main
import (
//"github.com/yggdrasil-network/yggdrasil-go/src/address"
//"github.com/yggdrasil-network/yggdrasil-go/src/config"
//"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
//"github.com/yggdrasil-network/yggdrasil-go/src/yggdrasil"
)
func main() {
store := makeStoreSquareGrid(4)
var block chan struct{}
<-block
panic(store)
}