-- Euphoria has powerful sequences
sequence nums = { 5, 6, 7 }
? nums * 2
-- Output: { 10, 12, 14 }
? nums * { 2, 3, 4 }
-- Output: { 10, 18, 28 }
Welcome to OpenEuphoria
Euphoria is a powerful but easy-to-learn programming language. It has a simple syntax and structure with consistent rules, and is also easy to read. You can quickly, and with little effort, develop applications, big and small, for Windows, Unix variants (Linux, FreeBSD, ...) and OS X.
Euphoria was first released as shareware way back in 1993. Nowadays, it is being developed as an open source project that is community driven and maintained. The language has evolved into a sophisticated tool for programmers.
Surprising to many, Euphoria is one of the fastest interpreted languages around however for more speed and ease of distribution Euphoria also includes an integrated Euphoria to C translator. Euphoria provides subscript checking, uninitialized variable checking, garbage collection, and numerous other run-time checks, and is still extremely fast.
Euphoria is a general purpose programming language with a large library base making it usable for a variety of tasks. Its use of simple English words rather than punctuation enables you to quickly read the source code and understand it. Please read some Sample Code for yourself.
- Posted by jimcbrown
Jan 13, 2012
Official eubins are now available for the GNU/Linux on ARM cpus. This is is pre-release, pre-alpha, and bleeding edge but signals the decision to officially support ARM starting with 4.1.0
Get it here: http://openeuphoria.org/eubins/linux/4.1.0/arm-32-bit/eubin-arm-cortex-a8-2012-01-13-ee49c6b8a340.tar.gz
Supporting files and source code: http://scm.openeuphoria.org/hg/euphoria/archive/426a9ed60258.tar.gz
- Posted by mattlewis
Dec 03, 2011
A pre-alpha release of a new, experimental feature has been released that allows multiple assignments to variables with a single assignment:
{ a, b } = foo()
Download for your plaform here!
- Posted by jimcbrown
Nov 29, 2011
64bit Euphoria eubins are now available. This bleeding edge, pre-alpha, and pre-release is mainly intended for developers of Euphoria itself, but it will provide a taste of 4.1.0 for the curious.
GNU/Linux: http://openeuphoria.org/eubins/linux/4.1.0/64-bit/eubin-2011-06-29-3739d931e005.tar.gz
Windows: http://openeuphoria.org/eubins/windows/4.1.0/64-bit/eubin-2011-11-27-a0e84559178c.zip
Supporting files and source code: http://scm.openeuphoria.org/hg/euphoria/archive/5e15a5130bec.tar.bz2
Note that you'll need 4.1.0 to generate the 64-bit 4.1.0 C source code, 4.0.3 (and the soon to be released 4.0.4) won't do it.