-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
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
Problem running proceures without pro #1868
Comments
@jaymurthy I do believe that what you are talking about is running a file as though it was the module main. IDL handles this by running the main module with the .go command not .run, .run will never work as there is no procedure temp. From my understanding IDL
|
@jaymurthy I would suggest changing the title to something like .go command has no implementation. |
Interesting, indeed IDL does:
So this would be a regression. In the absence of '.go' (remember, GDL was not initially written for interactive development, only playing 'old' IDL programs 😄 ) |
Coming in a bit late on this one.
gives:
but:
does what is expected. |
This program works ok on Sonoma 14.5
pro temp
print,'test'
end
If I remove the pro temp, it doesn't print anything. It used to work in 1.0.6-1gf84626e7
$ cat temp.pro
print,'test'
end
$ gdl
GDL - GNU Data Language, Version v1.0.6-16-gc154de16
GDL> .run temp
GDL>
The text was updated successfully, but these errors were encountered: