0 Members and 1 Guest are viewing this topic.
:8*randInt(3,10)→A:8*randInt(3,6)→B:Ans→C
It can be annoying getting used to the little things Axe does funny but stay with it and it will get way easier. The only thing that still bugs the crap out of me is the lack of negative numbers...
-1->B //this is a correct syntax//now B=65535Disp B>Dec,i//and you can do :B*8->BDisp B>Dec,i//B still negative !//B=65528 (-8)B*-1->B //we now get a positive numberDisp B>Dec,i //B=8