16 lines
214 B
Text
16 lines
214 B
Text
|
|
fp.printAllComb $= -|fn.combC(fn.arrayForEach, fn.println)
|
||
|
|
|
||
|
|
fp.printAllComb(42, 2, abc)
|
||
|
|
# 42
|
||
|
|
# 2
|
||
|
|
# abc
|
||
|
|
|
||
|
|
fp.printAllComb() # No output
|
||
|
|
|
||
|
|
&arr $= [1, abc, xyz, 42.42f]
|
||
|
|
fp.printAllComb(&arr...)
|
||
|
|
# 1
|
||
|
|
# abc
|
||
|
|
# xyz
|
||
|
|
# 42.42
|