hey nicolas,

i seem to have found more trouble in neko's (or is it haxe's?) [] operator:

Test.hx:
class Test {
    static function main() {
        var a:Array<Int> = new Array<Int>();
        
        for( i in 0...5 ) {
            a.push( i );
        }
              
        trace( a[0] +","+ a[1] +","+ a[2] +","+ a[3] +","+ a[4] );
    }
}

$ haxe -neko test.n -main Test && neko test.n
Test.hx:9: 0,1,null,null,null


gcc again?


-- 
http://0xDF.com/
http://iterative.org/

-- 
Neko : One VM to run them all
(http://nekovm.org)

Reply via email to