We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In MatLab I found code of the type:
function[x, y]=foo(a,b,c) if nargin < 3 # do something end if nargin < 2 # do another thing end end
I think this should be translated into Julia by:
function foo(args...) if length(args) <3 # more code return x,y end
But the automatic translator mantains ´if nargin < ´.
The text was updated successfully, but these errors were encountered:
Yes, I noticed this as well. Translator now just ignores when it does not understand something. This can be enhanced.
Sorry, something went wrong.
No branches or pull requests
In MatLab I found code of the type:
I think this should be translated into Julia by:
But the automatic translator mantains ´if nargin < ´.
The text was updated successfully, but these errors were encountered: