in reply to Re: eval order of args to a sub
in thread eval order of args to a sub
To me, this whole thing feels like a misunderstanding. Each sub receives one list value as an argument. We're not passing in expressions to be evaluated or anything like that.first(print('a'), print('b')) # prints 'ab' second(print('a'), print('b')) # prints 'ba'
|
|---|