Walk a directory/Recursively: Difference between revisions

(added go)
Line 384:
 
=={{header|Go}}==
<lang go>package main
 
import (
Line 405:
func main() {
path.Walk("/", MyVisitor{}, nil)
}</lang>
}
 
=={{header|Groovy}}==
Anonymous user