observing Pillar execution (PharoLaserGameTutorial)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

observing Pillar execution (PharoLaserGameTutorial)

Ben Coman
The Pillar documentation [1] says the "@@note xyz..." should produce
"Note: xyz..." but that doesn't seem to be happening.
This seems to be handled in  PRMarkdownWriter>>visitAnnotatedParagraph:
but not in PRLaTexWriter.

For the PharoLaserGameTutorial I invoke compile.sh.  How can I similarly
invoke Pillar but have it in GUI mode with a debugger so that I can
learn about how Pillar executes?

cheers -ben

Reply | Threaded
Open this post in threaded view
|

Re: observing Pillar execution (PharoLaserGameTutorial)

Damien Cassou
On Wed, May 21, 2014 at 3:42 PM, Ben Coman <[hidden email]> wrote:
> For the PharoLaserGameTutorial I invoke compile.sh.  How can I similarly
> invoke Pillar but have it in GUI mode with a debugger so that I can learn
> about how Pillar executes?


you can replace the call to the executable so that it uses that pharo-ui binary

--
Damien Cassou
http://damiencassou.seasidehosting.st

"Success is the ability to go from one failure to another without
losing enthusiasm."
Winston Churchill

Reply | Threaded
Open this post in threaded view
|

Re: observing Pillar execution (PharoLaserGameTutorial)

Ben Coman
Damien Cassou wrote:
On Wed, May 21, 2014 at 3:42 PM, Ben Coman [hidden email] wrote:
  
For the PharoLaserGameTutorial I invoke compile.sh.  How can I similarly
invoke Pillar but have it in GUI mode with a debugger so that I can learn
about how Pillar executes?
    


you can replace the call to the executable so that it uses that pharo-ui binary

  
That works. thx.