Haxe 2.10 Released
Posted on Jul 16 2012
Haxe 2.10 has been released !
It's one of the best release so far : two new targets (Java and C#) at once, and many cool features, languages improvements and fixes !
Check it out there : http://haxe.org/doc/release/2.10
6 comments
Woohoo.
Thanks.
Je viens de découvrir Haxe
venant de Ch (C/C++ interpreter de www.softintegration.com/)
Bravo c'est impressionnant !
Et donc je vais l'installer et l'essayer en amateur.
Spot on Nicolas, been using Haxe and Neko for a while now, sometimes through HaxeNME and this just keeps getting better and better. Cheers.
(i realize i wrote this in french... and yes, i must find some forum)
Donc un petit détour par Neko en découvrant Haxe
(Neko m'intrigue en comparaison de Lua ... librairies GUI aussi ?)
Dans mes essais je suis tombé sur cette bizarerie (?)
var int2=0x000A03; // Integer in hexadecimal (00*65536)+(10*256)+03
var int1= -12; // Integer have 31 bits, here in decimal form
... var=-12; error: Variable declaration must be done inside a block
... var= -12; ok, the space between two "operators" ?
Si je peux abuser ... ce qui suit est correct ?
var intMAX=0xBFFFFFFF; // (4*8)-1 bits, max integer value 1 073 741 823
// highest byte: BF where B-hex=0111-bin C-hex woud be 1000-bin thus negative
var int_1=0xFFFFFFFF; // 4*8 bits results in -1 (complement)
$print(int1, " ", int2, " ", intMAX, " ", int_1, "\n "); // print -12 2563 1073741823 -1
... décidément addictif !
@Francis, you'll find some infos on Neko int overflows on this page
Thanks for answering ...
now i have read enough to find my way, sorry for disturbing you.