this repo has no description
at main 80 B view raw
1package prototype 2 3type Inode interface { 4 print(string) 5 clone() Inode 6}