6 lines
165 B
Text
6 lines
165 B
Text
require "perm"
|
|
local fmt = require "fmt"
|
|
|
|
local a = {1, 2, 3}
|
|
print($"There are {perm.count(#a)} permutations of {fmt.swrite(a)}, namely:")
|
|
fmt.lprint(perm.list(a))
|