Just dropping by to say how awesome RapydScript is!
One thing stood out: the unorthodox/paradigmbreaking parenthesized syntax:
(def(a, b):
# stuff
)(1, 2)
I loved the .apply() and .call() innovations, why not have a third function like .do() so you can dispense with the completely unpythonic bracket syntax and write:
def(a, b):
# stuff
.do(1, 2)
Just dropping by to say how awesome RapydScript is!
One thing stood out: the unorthodox/paradigmbreaking parenthesized syntax:
I loved the
.apply()and.call()innovations, why not have a third function like.do()so you can dispense with the completely unpythonic bracket syntax and write: