1

I am trying to write a new method in Squeak. I click on the "no messages" to create a new method but any change to the existing template produces the error

"Error: cannot write a read-only file"

  • Where did you install Squeak? There should be an .image file accompanied by a .changes file. Both must be writable while you develop in Squeak. In particular, each method that you save will be written to the changes file. – JayK Apr 17 '18 at 21:21
  • Thanks you solved my problem. I found the changes file and messed with it until it worked – Gregg Arthur Evans Apr 18 '18 at 00:32

1 Answers1

1

Squeak comes with an .image file and a .changes file. You must ensure that both are writable at development time. In particular, each time you save a method it will be written to the changes file.

JayK
  • 3,006
  • 1
  • 20
  • 26