4 lines
75 B
Haskell
4 lines
75 B
Haskell
|
|
import Data.List (permutations)
|
||
|
|
|
||
|
|
main = mapM_ print (permutations [1,2,3])
|