mimium-test 2.0.0-alpha2

Common test modules & basic regression tests for mimium
Documentation
1
2
3
4
5
6
7
8
9
10
11
//answer 2
fn dsp(){
    let x = 5.0
    let f = | | { 
        let y = 3.0
        let ff = | |{ x-y}
         ff()
        }
    f()
}