nelson icon indicating copy to clipboard operation
nelson copied to clipboard

The Nelson Programming Language

Results 18 nelson issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** Currently, Mac users who wish to test Nelson must build it from source. This process is time-consuming and poses a...

enhancement
help wanted

support feature: ``` terminate(pyenv) ```

enhancement

many dependencies could be updated on Windows

enhancement

To be more compatible, we could support complex integer - conversion support for python - basic support ```matlab complex(int8([1 2 3])) ``` NLS_INT8_COMPLEX ... requires to extend all nelson part

enhancement
question

> function x = fib(n) > if n < 2 > x = n; > else > x = fib(n-1) + fib(n-2); > end > endfunction in Nelson 0.7.12.0 >>...

enhancement

add new data structure `dictionnary`

enhancement

add capability to record from microphone (sound card input)

enhancement

example datestr(now) 19-Feb-2017 09:52:37

enhancement

Find graphics objects with specific properties

enhancement

`writelines` could be an alias on `filewrite` `readlines` could be an alias on `fileread` Inspiration, creativity ;) ...