Jan. 25, 2018
10:07 p.m.
On 25 Jan 2018, at 23:03, Dominique Dartois <dom@dartois.org> wrote:
Hello all.
I'am learning to use Voyage by trying the examples in the Voyage doc (in the Enterprise Pharo book). I read "By default, Voyage works in instance mode". If I run the example in instance mode, I get an error via the debugger.
|repo anAssociation| repo := VOMemoryRepository new. anAssociation := #answer -> 42. anAssociation save: repo.
repo save: anAssociation :) cheers! Esteban
==> "Instance of Association did not understand #save:"
What am I doing wrong?
-- Dominique