Thank you, Morten.
That solves my problem.
Search found 5 matches
- Wed Mar 21, 2018 3:46 pm
- Forum: Language
- Topic: Isolates: Calling functions in an isolate with an argument
- Replies: 2
- Views: 7665
- Wed Mar 21, 2018 2:13 pm
- Forum: Language
- Topic: Isolates: Calling functions in an isolate with an argument
- Replies: 2
- Views: 7665
Isolates: Calling functions in an isolate with an argument
I have a question about isolates and how to give an argument (a local variable) to a function, called in an isolate. Here´s some code, I tried out: iss←isolate.New¨'' '' '' ⍝ Make 3 isolates t←iss.⎕DL 1 1 1 ⍝ Do 3 short delays t←iss.(#.Version) ⍝ Call a niladic function Version t←iss.(#.foo 99) ⍝ Cal ...
- Tue Apr 18, 2017 5:42 am
- Forum: New to Dyalog?
- Topic: Using Dyalog APL as a scripting language
- Replies: 5
- Views: 21316
Re: Using Dyalog APL as a scripting language
Instead of the latent expression, you could use a script-file "*.dyalog" with scripted APL commands - created with ]save - and pipe this into dyalog.exe:
dyalog.exe <commands.dyalog -x -q myworkspace.dws
dyalog.exe <commands.dyalog -x -q myworkspace.dws
- Mon Feb 11, 2013 12:42 pm
- Forum: Language
- Topic: Providing workspaces for a older version
- Replies: 6
- Views: 21155
Re: Providing workspaces for a older version
Thank you all. Working with the scripted form would help, but it might be difficult, when sharing workspaces with other people that don´t want to work with spripted workspaces. In my daily work as a consultant, I often have to provide workspaces to a customer in that form, he is familiar with. ...
- Thu Feb 07, 2013 12:19 pm
- Forum: Language
- Topic: Providing workspaces for a older version
- Replies: 6
- Views: 21155
Providing workspaces for a older version
Here is on of the "silly" questions: How can I easily provide workspaces, which have been saved with a newer version of Dyalog APL (e.g. 13.2) for older versions (e.g. 13.1 or 12.x)? Even in the case of an 13.2 workspace, we get an "this WS requires a later version of the interpreter" message, whan ...