Hi All,Following the rules given on redline web site I tried the Greeting example which works well when running exactly the example.Thus seeing that the Greeting class also implements a "void say( String message)". I expected the adaptor able to adapt for a say: 'Hello" invocation.But this does not work. Is there something I missed ?Also I can find a way to setup an execution environment under eclipse.How should I configure the "run configuration (tried may -r and -s options but still unable to resolve st.redline.core.Symbo.Thanks for you answersGerard--
You received this message because you are subscribed to the Google Groups "Redline Smalltalk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to redline-smallt...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Thank you James,I'm really interested in working on redline. But at this time I still feel difficult to understand the design.Do you have some document that explains theway it (should) work ?I don't know IntelliJ and I work with Eclipse. To better understand I try some examples I write by myself.One of the thing I don't understand is the way some ST classes are bound to java classes.For example I tried simply the st expression '1 printString' which fails with a ' WriteStream doesNotUnderstand on: with argument: 1'So I looked at WriteStream class and its ancestors and saw that finally we have:PositionableStream < #WriteStream.thenStream < #PositionableStream.and thenObject < #Stream.So my understanding is that finally there's a kind of binding between the ST Stream and the java StreamBut I can't see how this binding is done.Am I correct ?
And it also has blog posts on how things work under the covers:
The Redline Smalltalk Web Site has information on getting started:
http://www.redline.st/discover/getting-started.html
http://www.redline.st/blog/
The reason that 1 can't handle the 'printString' message is because the Runtime is notI'll setup a project in Eclipse and describe the process.I'm trying to find someone to develop the Eclipse plugin, and when I get a few minutes
complete. This is the work in progress that I am doing. Would you like to help?
It is possible to bind to Java object automatically and manually, there are blog posts about
this on the link above. The manual approach is detailed here:
http://www.redline.st/blog/2012/05/01/emitting-jvm-bytecodes.html
Thank you for the questions and sorry you had to wait for the Eclipse support.