6 lines
229 B
Ruby
6 lines
229 B
Ruby
#!/usr/bin/env ruby
|
|
arr = ["foo", "bar", "baz", "qux", "quux", "corge", "grault", "garply"]
|
|
paths = arr.permutation(3).map { |a| "/#{a.join '/'}" }
|
|
paths.each do |path|
|
|
puts "rtree_insert_path(n, \"#{path}\", NULL);"
|
|
end
|