Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to organize code in rebol? [closed]

Whats the best way to organize code in Rebol?
(Rebol2, not Rebol3. Rebol3 will have import, as it seems.)

Is the do %myfunctions.r-style all that is needed? There is no real package statement like in Java, or #include like in C?
Do community-approved naming conventions exist?
Could http://www.rebol.it/power-mezz/mezz/module.html be considered a standard?

I read somewhere that I could build my own module system as well. But this seems not like a sensible approach to me.

Is this discussion doomed as Rebol3 will be finished soon? ;-)

like image 581
sjas Avatar asked Jan 25 '26 08:01

sjas


1 Answers

Some subjects I know use my include.r, released under Apache 2.0 now. It is not a module system but you may find it useful.

like image 110
Ladislav Avatar answered Jan 28 '26 11:01

Ladislav