haXe 2.09
Helps programers develop Websites and Web applications
haXe was designed to be a high-level object-oriented programming language with the intention of helping programers develop Websites and Web applications. haXe has been designed to be easily portable across several platforms.
haXe 2.09 full details
| File Size: | 2.10 MB |
|---|---|
| License: | Open Source |
| Price: | FREE |
| Released: | 2012-04-25 |
| Downloads: | Total: 115 | This Month: 0 |
| Publisher: | Nicolas Cannasse |
| Publisher URL: | http://haxe.org/ |
Download haXe 2.09
Save haXe to My Stuff
haXe - Windows 7 Download awards
haXe 2.09 full description
haXe (pronounced as hex) is an open source programming language. While most other languages are bound to their own platform (Java to the JVM, C# to .Net, ActionScript to the Flash Player), haXe is a multiplatform language.
It means that you can use haXe to target the following platforms :
Javascript : You can compile a haXe program to a single .js file. You can access the typed browser DOM APIs with autocompletion support, and all the dependencies will be resolved at compilation time.
Flash : You can compile a haXe program to a .swf file. haXe is compatible with Flash Players 6 to 10, with either "old" Flash 8 API or newest AS3/Flash9+ API. haXe offers very good performance and language features to develop Flash content.
NekoVM : You can compile a haXe program to NekoVM bytecode. This can be used for server-side programming such as dynamic webpages (using mod_neko for Apache) and also for command-line or desktop applications, since NekoVM can be embedded and extended with some other DLL.
PHP : You can compile a haXe program to .php files. This will enable you to use a high level strictly-typed language such as haXe while keeping full compatibility with your existing server platform and libraries.
C++ : You can now generate C++ code from your haXe source code, with the required Makefiles. This is very useful for creating native applications, for instance in iPhone development.
C# and Java targets are coming soon! (from @cwaneck)
The idea behind haXe is to let the developer choose the best platform for a given job. In general, this is not easy to do, because every new platform comes with its own programming language. What haXe provides you with is:
a standardized language with many good features
a standard library (including Date, Xml, Math...) that works the same on all platforms
platform-specific libraries : the full APIs for a given platform are accessible from haXe
FEATURES:
· The haXe Syntax is similar to the one used in Java / JavaScript / ActionScript, so it's very easy to learn and get used to haXe. haXe can also integrate easily in your favorite editor or IDE
· The haXe Type System is strictly typed, enabling the compiler to detect most errors at compile-time. At the same time, it's very different from classic strictly typed languages since you don't have to write types everywhere in your program, thanks to type inference. It makes you feel like you are programming in a dynamically typed language while you are getting the security of a strictly typed language. The best of both worlds
· The haXe Standard Library, including Date, XML, data structures... is specified to behave the same across all platforms. This enables you to share and reuse code logic between different platforms without needing to rewrite the same thing again and again
· haXe is easily Extensible : you can add additional libraries and wrappers for platform-specific features. Thanks to conditional compilation you can have different implementation for a given API depending on the platform you want to compile to
· haXe has a Remoting library that provides cross platform serialization and RPC, enabling you to directly call methods between platforms. For example calls may be made between the client and the server or between different client modules. Everything is handled transparently
· haXe can be used to develop portable Desktop applications by using SWHX
It means that you can use haXe to target the following platforms :
Javascript : You can compile a haXe program to a single .js file. You can access the typed browser DOM APIs with autocompletion support, and all the dependencies will be resolved at compilation time.
Flash : You can compile a haXe program to a .swf file. haXe is compatible with Flash Players 6 to 10, with either "old" Flash 8 API or newest AS3/Flash9+ API. haXe offers very good performance and language features to develop Flash content.
NekoVM : You can compile a haXe program to NekoVM bytecode. This can be used for server-side programming such as dynamic webpages (using mod_neko for Apache) and also for command-line or desktop applications, since NekoVM can be embedded and extended with some other DLL.
PHP : You can compile a haXe program to .php files. This will enable you to use a high level strictly-typed language such as haXe while keeping full compatibility with your existing server platform and libraries.
C++ : You can now generate C++ code from your haXe source code, with the required Makefiles. This is very useful for creating native applications, for instance in iPhone development.
C# and Java targets are coming soon! (from @cwaneck)
The idea behind haXe is to let the developer choose the best platform for a given job. In general, this is not easy to do, because every new platform comes with its own programming language. What haXe provides you with is:
a standardized language with many good features
a standard library (including Date, Xml, Math...) that works the same on all platforms
platform-specific libraries : the full APIs for a given platform are accessible from haXe
FEATURES:
· The haXe Syntax is similar to the one used in Java / JavaScript / ActionScript, so it's very easy to learn and get used to haXe. haXe can also integrate easily in your favorite editor or IDE
· The haXe Type System is strictly typed, enabling the compiler to detect most errors at compile-time. At the same time, it's very different from classic strictly typed languages since you don't have to write types everywhere in your program, thanks to type inference. It makes you feel like you are programming in a dynamically typed language while you are getting the security of a strictly typed language. The best of both worlds
· The haXe Standard Library, including Date, XML, data structures... is specified to behave the same across all platforms. This enables you to share and reuse code logic between different platforms without needing to rewrite the same thing again and again
· haXe is easily Extensible : you can add additional libraries and wrappers for platform-specific features. Thanks to conditional compilation you can have different implementation for a given API depending on the platform you want to compile to
· haXe has a Remoting library that provides cross platform serialization and RPC, enabling you to directly call methods between platforms. For example calls may be made between the client and the server or between different client modules. Everything is handled transparently
· haXe can be used to develop portable Desktop applications by using SWHX
haXe 2.09 download tags
haXe 2.09 Windows 7 release notes
New Release
· js : added js.Scroll
· js : package names are now checked at runtime to avoid clashes with existing libs
· js : added --js-namespace to create a namespace for types that are defined in the root
· all : updated xml output and html doc - add inline, override, dynamic functions support
· all : added error when comparing enum with arguments
· all : optimize constant equality for enums
· flash9 : fixed verify error with inline + null type
· flash9 : bugfix when overriding/implementing an method with an applied type parameter
· php : fixed issues with classes that implement Dynamic
· all : ignore #! line at beginning of the hx file
· haxelib : added tags, added documentation
· flash8 : don't use b64 encoding for text ressources
· php : fixed bug in Hash.exists for null values and Reflect.callMethod
· js/flash9 : throw exception in Xml.parse when unclosed node
· all : improve return type progagation in inlined expression (fix some VerifyErrors)
· all : optimize {const} into const
[ haXe release history ]
· js : added js.Scroll
· js : package names are now checked at runtime to avoid clashes with existing libs
· js : added --js-namespace to create a namespace for types that are defined in the root
· all : updated xml output and html doc - add inline, override, dynamic functions support
· all : added error when comparing enum with arguments
· all : optimize constant equality for enums
· flash9 : fixed verify error with inline + null type
· flash9 : bugfix when overriding/implementing an method with an applied type parameter
· php : fixed issues with classes that implement Dynamic
· all : ignore #! line at beginning of the hx file
· haxelib : added tags, added documentation
· flash8 : don't use b64 encoding for text ressources
· php : fixed bug in Hash.exists for null values and Reflect.callMethod
· js/flash9 : throw exception in Xml.parse when unclosed node
· all : improve return type progagation in inlined expression (fix some VerifyErrors)
· all : optimize {const} into const
[ haXe release history ]
haXe for Windows 7 - Copyright information
All haXe reviews, submitted ratings and written comments become the sole property of Windows 7 download. You acknowledge that you, not windows7download, are responsible for the contents of your submission. However, windows7download reserves the right to remove or refuse to post any submission for any reason.
Windows 7 Download periodically updates pricing and software information of haXe full version from the publisher, but some information may be out-of-date. You should confirm all information.
Using warez version, crack, warez passwords, patches, serial numbers, registration codes, key generator, pirate key, keymaker or keygen for haXe license key is illegal and prevent future development of haXe. Download links are directly from our mirrors or publisher's website, haXe torrent or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, SendSpace, DepositFiles, DivShare, HellShare, HotFile, FileServe or MediaFire, are not used.
Windows 7 Download periodically updates pricing and software information of haXe full version from the publisher, but some information may be out-of-date. You should confirm all information.
Using warez version, crack, warez passwords, patches, serial numbers, registration codes, key generator, pirate key, keymaker or keygen for haXe license key is illegal and prevent future development of haXe. Download links are directly from our mirrors or publisher's website, haXe torrent or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, SendSpace, DepositFiles, DivShare, HellShare, HotFile, FileServe or MediaFire, are not used.
Post haXe review
Windows 7 haXe related downloads
PILS is a dynamic, functional programming language with a unified model of data and programs.The
Aurel Basic is simple programming tool wich is made for beginers in programing world. He is ...
Visual Prolog is a logical programming language that counts PDC Prolog and Turbo Prolog as ... Visual Prolog is a very safe and powerful programming language that combines the very best features of functional, ...
Gentee is a friendly full-scale programming language. It can become a reliable assistant in your ... can be your first, as well as tenth programming language. All necessary documentation, examples and a library set ...
thinBasic is a Basic Programming Language Interpreter. Fast, reliable, well documented, features rich, easy to ...
My Account
My Saved Stuff
GdsViewer 2.1.9.390
Download Remove
gDoc Fusion 2.5
Download Remove
GameDay Payoff 1.0.0.121
Download Remove
Cross Fire 1080
Download Remove
Cool Barcode Maker 4.0
Download Remove
ContaCam 3.9.9
Download Remove
Free Large Android Icons 2011.2
Download Remove
FlashCapture 3.0.3.1317
Download Remove
Daytrader Companion 1.4.0
Download Remove
Dator 2.7.0
Download Remove
Azureus 4.0.0.4
Download Remove
AVS Video Converter 8.1.2.510
Download Remove
AutoScreenRecorder Pro 3.1.375
Download Remove
AnyToJpeg 3.3
Download Remove
Any DVD Cloner Express 1.2.2
Download Remove
Free YouTube to MP3 Converter 3.10.11
Download Remove
Fix IE Utility 1.0
Download Remove
DDE server plugin 3.7.4.1130
Download Remove
Codice Fiscale 5.1.1
Download Remove
Encode360 2.03
Download Remove
ChemDoodle 2.0.3
Download Remove
BrushO! 1.05
Download Remove
EVVAddressBook 3.0
Download Remove
Evolution 2.28.1-1
Download Remove
ECrawl 2.63
Download Remove
Audio Sound Editor for .NET 2.2.1.0
Download Remove
123FTP-Free 3.9.1
Download Remove
Amphis Customer 3.0
Download Remove
AIMP Classic 3.10 B1040 Beta
Download Remove
ABC Roster 1.5.0
Download Remove
A-one iPod PSP 3GP Video Converter 7.6.3
Download Remove
Acoolsoft PPT to Video Free 3.2.3
Download Remove
Download Remove
gDoc Fusion 2.5
Download Remove
GameDay Payoff 1.0.0.121
Download Remove
Cross Fire 1080
Download Remove
Cool Barcode Maker 4.0
Download Remove
ContaCam 3.9.9
Download Remove
Free Large Android Icons 2011.2
Download Remove
FlashCapture 3.0.3.1317
Download Remove
Daytrader Companion 1.4.0
Download Remove
Dator 2.7.0
Download Remove
Azureus 4.0.0.4
Download Remove
AVS Video Converter 8.1.2.510
Download Remove
AutoScreenRecorder Pro 3.1.375
Download Remove
AnyToJpeg 3.3
Download Remove
Any DVD Cloner Express 1.2.2
Download Remove
Free YouTube to MP3 Converter 3.10.11
Download Remove
Fix IE Utility 1.0
Download Remove
DDE server plugin 3.7.4.1130
Download Remove
Codice Fiscale 5.1.1
Download Remove
Encode360 2.03
Download Remove
ChemDoodle 2.0.3
Download Remove
BrushO! 1.05
Download Remove
EVVAddressBook 3.0
Download Remove
Evolution 2.28.1-1
Download Remove
ECrawl 2.63
Download Remove
Audio Sound Editor for .NET 2.2.1.0
Download Remove
123FTP-Free 3.9.1
Download Remove
Amphis Customer 3.0
Download Remove
AIMP Classic 3.10 B1040 Beta
Download Remove
ABC Roster 1.5.0
Download Remove
A-one iPod PSP 3GP Video Converter 7.6.3
Download Remove
Acoolsoft PPT to Video Free 3.2.3
Download Remove
Would you like to receive announcements of new versions of your software by email or by RSS reader? Register for FREE!
Windows 7 Downloads Picks
- Free Pascal 2.6.0
- Visual Studio Professional Edition 2008
- Simply Fortran 1.29
- Easy Code for MASM 1.04.0.0006
- Intel Visual Fortran Composer XE 2011.0.104
- Python 3.2.2
- Fiddler 2.3.9.3
- wxDEV-C++ 4.9.9.2
- Visual Prolog 7.3 B7302
- FreeBasic for Windows 0.23.0
- Wing IDE Personal 4.1.6-1
- Qt 4.8.2
- Longtion Application Builder 3.0.0.120
- Open Fortran Parser 0.8.1
- GNU Prolog for Windows (x64 bit) 1.4.0
- tIDE 2.39
- Wing IDE Professional 4.1.5-1
- Aurel Basic RC2 Build 1.2
- NHibernate Profiler 1.0.0.0 B681
- PureBasic x64 4.61
Popular Tags
free
coding language
compile
exe
programming language
java
basic
compiler
basic language
decompiler
pascal
programming
language
Popular Windows 7 Software
- Turbo C++ 3.0
- Turbo Pascal 7.0
- DOSBox 0.74
- Java Runtime Environment 6.31
- Java Runtime Environment 64bit 6.31
- Microsoft .NET Framework 4 4.0.30319.1
- Free Pascal 2.6.0
- Notepad++ 6.1.3
- Microsoft .NET Framework 3.5 SP 1
- BlueJ 3.0.7
- Visual C++ Express Edition 2010
- Texmaker 3.3.4
- Mozilla ActiveX Control 1.7.12
- Visual Basic 6.0 HelpVistaXPDiamond 2.0.0.0
- Visual Studio Professional Edition 2008
© 2012 Windows7Download.com - All logos, trademarks, art and other creative works are and remain copyright and property of their respective owners. Microsoft Windows is a registered trademarks of Microsoft Corporation. Microsoft Corporation in no way endorses or is affiliated with windows7download.com.






