diff options
| author | Jeff Carr <[email protected]> | 2025-01-06 15:31:44 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-06 15:31:44 -0600 |
| commit | 3a3c1de9dec92e93e51147880fdce404041b47c6 (patch) | |
| tree | ff6e36e456ece75d735dc2ff62afa2d340d9666a | |
| parent | 83dc576be0ad0d61920708822ffd79ea6d44b7b8 (diff) | |
| -rw-r--r-- | init.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -13,7 +13,7 @@ import ( // const Xaxis = 0 // stack things horizontally // const Yaxis = 1 // stack things vertically -func init() { +func initNew() { log.Log(INFO, "init() has been run") me.counter = 0 @@ -257,6 +257,7 @@ func New() *Node { } */ + initNew() return me.rootNode } |
