Neon

Neon features history

This page shows an overview of all features and changes in Neon over time, version by version.

Neon 4.5

Neon 4.1

Neon 4.0

Neon 3.0-beta

Neon 2.12.38.2-beta

Neon 2.11.36.2-beta

Example:

a = Cmplx(re:1, im:2)

To access a field, write object>>field. For example here, a>>re equals 1 and a>>im equals 2.

if (condition1) then
    instructions1
elif (condition2) then
    instructions2
else
    instructions3
end

Of course the elif and else parts are not mandatory; if they are omitted, the block just needs to be closed with an end.

Neon 2.7.11-beta

Neon 2.7.8-beta

Neon 2.6.7-beta

Neon 2.1-beta

Neon 2.0-beta

function name(param1, param2, ...) {
    return ( param1 + param2 )
}
method append_item(list, element) {
    append(list, element)
}
a = 5
del a # a can no longer be used