I have the following APL Functions which I want to save in a .dyalog file:
⍝ Project Euler Solutions
summul ← {+/⍵×⍳⌊1000÷⍵}
euler1 ← (summul 3) + (summul 5) - (summul 15)
But when I typed this code in Dyalog APL Editor, and clicked Save and Return button, I got the error
Cannot fix object without a name
.
What does this error mean? What am I doing wrong?