valoeghese / Jason-Basic

Programming language for niche discord bot in private server
Other
2 stars 2 forks source link

List Comprehension #8

Open valoeghese opened 3 months ago

valoeghese commented 3 months ago

Very important feature

Here's some funny looking syntax for it

DIM array 5 ("He", "llo", ", ", "Worl", "d!")
# add all elements of the array and print
PRINT array(+)
# append "lol" to all array
array = array(+"lol")
# add all elements of the array and print
PRINT array(+)

Alternatively we do something that fits the vibe of the language better and just have a SUM command. Something like this:

DIM array 5 ("He", "llo", ", ", "Worl", "d!")
SUM array TO result
PRINT result
valoeghese commented 3 months ago

For notes on syntax used in DIM see #7