radon icon indicating copy to clipboard operation
radon copied to clipboard

some missing features

Open DracoKinerek opened this issue 2 years ago • 2 comments

So, here's what we need:

  • += -= *= /= %= ^=
  • array functions

so the += -= etc are self explanatory, it changes x = x+1 to x += 1 and the array functions should be:

var arr = [1, 2, 3]
arr.extend(4)
print(arr) #4

DracoKinerek avatar Jun 28 '23 00:06 DracoKinerek

Can you try https://radon-project.github.io/docs/arrays.html this implementation and give your feedback.

There are lots of predefined methods available. You can check the docs for more details.

Almas-Ali avatar Dec 15 '23 17:12 Almas-Ali

  • [x] Operators has been added. REP-7 (#65)

Almas-Ali avatar Apr 22 '24 18:04 Almas-Ali