-- user-defined types made simple:
type pair (sequence field_value)
return length(field_value) = 2
end type
pair p1 = { 2, 3} -- ok
pair p2 = { 2, 4, 6} -- fails
pair p3 = p1 & 0 -- fails
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 mattlewis
Oct 19, 2012
Euphoria v4.0.5 has been released!
This release contains several bug fixes, some performance enhancements, and some preparation for deserialization of 4.1, 64-bit data.
Check the release notes for more details.
- Posted by jimcbrown
Apr 08, 2012
Euphoria v4.0.4 was released on April 7th, 2012! Some important bug fixes have been made.
Check out the release notes for details.