nevalang / neva

🌊 Dataflow programming language with static types and implicit parallelism. Compiles to machine code and Go
https://nevalang.org
MIT License
124 stars 7 forks source link

List Push & List Sort #536

Closed dorian3343 closed 7 months ago

dorian3343 commented 7 months ago

List Push : Returns an input list with a value (of the same type) appended to the end.

List Sort: Returns a sorted list, if its an integer list it returns it from lowest to highest, otherwise it sorts the values alphabetically

Notes for reviewer:

dorian3343 commented 7 months ago

Added String split and string join