In the last couple of days I tried Logramm and found it pretty easy.
However, I cannot wrap my head around dictionaries and how to create a loop.
I created a test dictionary:
member = [
.id : 0,
.username : "derek.almond",
.email : "derek.almond@mail.com",
.registrationDate : "09/12/2014",
.privileges : 1
];
Then I tried to skip it like this:
@ info -> member: out info;
But all this prints out a list of keys ( id, usernameetc.).
How can I get objects?
source
share