All Downloads are FREE. Search and download functionalities are using the official Maven repository.

console.ace-builds-1.2.8.demo.kitchen-sink.docs.io.io Maven / Gradle / Ivy

The newest version!
// computes factorial of a number
factorial := method(n,
    if(n == 0, return 1)
    res := 1
    Range 1 to(n) foreach(i, res = res * i)
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy