On Mon, Aug 17, 2020 at 11:45:46AM +0200, rob...@robkuz.com wrote: > I am trying to find out what the difference between an VM and an Image is > when using Pharo.
An image is like a computer game that can save its state to disk. The VM is for running the game. With a fresh image, you start the game with a clean slate. With a saved image, you restart the game where you last left it. And programming in Pharo is usually as enjoyable as playing a computer game. :-) Pierce