Select a theme:
 
1
function aTest () {
2
    'use asm';
3
    function f() {
4
        var x = 0, y = 0;
5
        x = (x|0)%(y|0);
6
    }
7
    return f;
8
}
9