Way to run command on Args Function Name(sort(mytable))
Posted: Sun Jun 15, 2025 4:24 pm
I wonder would it be possible to add possibility to affect Args of a Function right at beginning, since sometimes this could be useful from codes readability point of view.
As example:
To make this more readable, would be if it could be done instead:
This could also be used for something like using Sort(TableA) at beginning of a function.
Any Chance something like this could be done? Not that big a deal, but I think it would make the code slightly more readable, and faster to find stuff.
As example:
Code: Select all
Function CompareTwoStrings(A, B)
A = LowerStr(A)
B = LowerStr(B)
If A = B then Return(True)
Return(False)
EndFunctionCode: Select all
Function CompareTwoStrings(Lowerstr(A), Lowerstr(B))
If A=B then Return(True)
Return(False)
EndFunctionAny Chance something like this could be done? Not that big a deal, but I think it would make the code slightly more readable, and faster to find stuff.