NeonThis tutorial is a preliminary version and will be improved over time.
Neon is a general-purpose, natively concurrent scripting language designed to make concurrent programming possible even on systems without a multitasking OS (like the TI-EZ80 calculator). It is interpreted, meaning you don’t need to compile your code—you can run it directly.
parallel operator.Neon has three execution modes:
Console Mode (Interactive REPL)
>> and press Enter to evaluate them.>> 2 + 3
(Integer) = 5
>> x = 10
>> x * 2
(Integer) = 20
Direct Execution Mode (Run .ne files)
.ne extension (e.g., hello.ne).neon hello.ne arg1 arg2
Ans or Rép to the filename (e.g., "PROGRAM").Launcher Mode (Auto-execute a startup script)
LAUNCHER starting with #NEON or NEON\x00._launcher_.ne in the current directory.