"Hi Kilon,

the way your are explaining it, it seems you are trying to build a
Smalltalk-like syntax in C++ via templates?

It could make moving a software architecture from Smalltalk to C++
significantly easier (and open maybe some opportunities).

Thierry"

Bingo ! You get it !

Thats what is all about about moving code from Pharo to C++ and NOT
reimplementing Pharo in C++ as some people assumed. Yes if I can go for
smalltalk-syntax that would be a fair compromise, ideally i want to keep
Pharo syntax intact and introduce C++ features like static types , pointers
etc through the use of pharo objects. 

For example I can make an object to represent a C++ int, what stops me from
taking pharo class variable make it initialise with that int object then
later on use a string instead ? 

Nothing, my compiler wont even complain, but when you turn it to C++ code
and try to compile it you will get C++ errors. 

On the subject of templates, again there wont be magical transormation of
dynamic types to C++ templates at least not in the start since C++ expect to
be explicity about the use of a template that will carry on to my tool as
well. That means that the pharo code will have to be explicit and leave
nothing to chance like a C++ coder does. 

Essentially you coding C++ using pharo syntax or pharo like syntax depending
on how succesful I will be with this. Also creating readable code is a must
do. 

For example I have taken a look at chicken and gambit scheme that take
scheme (lisp variant) and turn to C and then call the c compiler to make the
machine code executable. The problem is that C code is unreeadable because
it tries to emulate dynamic types etc. My goal is so not to retain Pharo
features and dynamism but rather to produce C++ that is not only readable
but proper C++ code with comments , good names, etc. 

My thinking however is like this: 

1) Prototype in Pharo and make sure it works well using all the features and
tools of pharo (dynamic types, GC, live coding, live debugging etc)
2) convert your code to my language that looks a lot like pharo but with all
the C++ features leaving no ambiguities for the compiler
3) use my compiler to turn a specific fragment of code to C++
4) go back to to (1)
3) 



--
View this message in context: 
http://forum.world.st/Compiling-Pharo-to-C-tp4877775p4877838.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Reply via email to