>
> Let me know if you'd like to add a bioinformatics or geographic
> information retrieval chapter. I wrote the chapters in Markdown for
> pandoc but I can convert them to Pillar once it's ready for Windows.
Sure I will set up a booklet-folder and make sure that it compiles on travis
so that you
On 02-02-18 15:19, Juraj Kubelka wrote:
Thank you Stephan!
There is my exercise:
“when:send:to"
morph := 'Hello' asMorph.
morph when: #click send: #traceCr: to: morph.
morph openInWindow.
Sorry
morph := 'Hello' asMorph.
morph on: #mouseUp send: #traceCr: to: morph.
morph openInWindow.
Hi,
Pillar allows to evaluate a script and use its output instead of the script
itself, e.g.,
-=-=-=-
[[[eval=true
DateAndTime now printString
]]]
-=-=-=-
How can I test it in a Pharo image? I tried:
-=-=-=-
document := PRPillarParser parse: '[[[eval=true
DateAndTime now printString
]]]' read