RosettaCodeData/Task/Compile-time-calculation/Phix/compile-time-calculation.phix

5 lines
62 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
integer a,b
a = 10*9*8*7*6*5*4*3*2*1
b = factorial(10)
?{a,b}