> On 03 May 2016, at 13:58, Victor RENE wrote:
>
> | f g h |
> f := '[ :a | ^a + 1 ].'. " Message pattern expected "
> g := '| b |'. " '|' expected "
> h := '| b ||'. " Success?!? "
> OpalCompiler compile: f.
> OpalCompiler compile: g.
> OpalCompiler compile: h.
>
#compile: expects a complete
| f g h |
f := '[ :a | ^a + 1 ].'. " Message pattern expected "
g := '| b |'. " '|' expected "
h := '| b ||'. " Success?!? "
OpalCompiler compile: f.
OpalCompiler compile: g.
OpalCompiler compile: h.
Basically I went from writing a function to clean up StringMorphs on the
World...
cleanupString