World: r4wp
[#Red] Red language group
older newer | first last |
GiuseppeC 5-Nov-2012 [3349x2] | (And let me state again: I apreciate your commitment) |
It is a question that must be answered. It is the core of your project, it is the motivation for your "customers". | |
Henrik 5-Nov-2012 [3351] | GiuseppeC: Red/System is a language to build other languages using a similar syntax as REBOL, one of which is Red. R3 is based on C. There is no way for R3 to tap directly inline into C's performance, while Red will be able to. I think this is quite a feat that might make Red much more flexible than R3. You also get encapping right out of the box with the current compiler. I can't come up with an appropriate car analogy. |
GiuseppeC 5-Nov-2012 [3352] | Henrik, PERFORMANCE. It is the first difference. Now the car can run faster. Any other differences ? |
Henrik 5-Nov-2012 [3353] | Red/System also offers a nicely compact and clean toolchain, which R3 doesn't even focus on. As far as I know, not many people like the current C toolchains. |
GiuseppeC 5-Nov-2012 [3354x2] | I am talking about RED and not RED/System. |
Just to make it clear. | |
Henrik 5-Nov-2012 [3356] | That means that we have total 100% control over how and where Red can build. We don't depend on the quality of the compiler for a platform. |
GiuseppeC 5-Nov-2012 [3357] | I can see and huge difference between C and RED/System which give to the latter a great appeal to the developers. |
Henrik 5-Nov-2012 [3358] | I don't think you can talk Red without talking Red/System, because in the long run, you may be happy to have Red/System available instead of resorting to C for performance parts. |
GiuseppeC 5-Nov-2012 [3359x2] | Henrik, yeas, I want RED/system, I feel this needing. It is easy, human compatible, it is nice. It makes the difference. |
Ok, I am leaving, I have to go away. | |
Kaj 5-Nov-2012 [3361] | Henrik speaks wise words. For the past decade, we've been occupied with maintaining the GNU C/C++ toolchain in Syllable. If it hadn't been so problematic, we could have spent that time developing the operating system itself, and the project might have been in a much better position now |
GiuseppeC 5-Nov-2012 [3362] | To everyone: my questions are not meant to create problems. I work every day with customers and they always ask me "which is the difference between you and this other product/service". |
Kaj 5-Nov-2012 [3363x3] | So the difference between Red and R3 is between a car that takes you there, and a car that breaks down before reaching your destination |
It's a fair question, but the answer depends on insight | |
I find myself less and less interested in REBOL, even open sourced | |
Arnold 5-Nov-2012 [3366] | Well Guiseppe, you may have to think of a second hand car ;) You can drive with it, it can be the car you wanted but some details as its color and chairheating can differ from what you had in mind. It is up to you to buy it anyway. By buying second hand you can have a more powerful engine than buying a new car. |
Kaj 5-Nov-2012 [3367x2] | Remember that the REBOLution was proclaimed to create the next generation operating system. However, REBOL falls seriously short there, not having delivered an operating system and not running well on top of any other operating system |
Red does solve the problems that need to be solved there | |
Arnold 5-Nov-2012 [3369x2] | For what I have seen, Kaj, I can second that. I use REBOL to learn Red ;) |
And the liberation from the C tool CHAIN Viva la Liberation! | |
Kaj 5-Nov-2012 [3371] | :-) |
Henrik 5-Nov-2012 [3372] | It may be time to consider REBOL an idea, a good one and one that now needs to have its true wings in the form of Red. |
Pekr 5-Nov-2012 [3373] | it would be also possible to rewrite R3 in Red/System, but then R3 would be similar to Red itself? |
Kaj 5-Nov-2012 [3374] | Doc tells me an interpreter would be simple to write in Red, so even there no need for R3 |
Arnold 5-Nov-2012 [3375x2] | Does R3 need a console? It would be the interpreter made using Red. |
you beat me Kaj! | |
Pekr 5-Nov-2012 [3377] | Kaj - not sure it will be a console, but something like that, just not an interpreter, but more a JIT compiler? |
Kaj 5-Nov-2012 [3378] | Red will be a JIT compiler, but you could still write an interpreter on top of it. Might even be useful, for example for platforms that block JIT compilation |
Jerry 5-Nov-2012 [3379] | When the "Red Memory Manager" Doc will be released? |
AdrianS 5-Nov-2012 [3380] | I posted in Sublime Text's forum in regard to the lexing needs that we might need for good Red support. The author hasn't answered yet, but maybe if others add to the thread, it'll keep it near the top and show there's interest in the idea. I suppose even if ST doesn't make its lexer pluggable, we could just make the built-in lexer do as little as possible by including no tmLanguage file for Red and delegating any syntax coloring/scope processing to a native library that's part of a Sublime Text package for the Red language. http://www.sublimetext.com/forum/viewtopic.php?f=2&t=9870 |
Ashley 6-Nov-2012 [3381] | I think Red's USP is, "the performance of C with the elegance of REBOL" ... which is attractive to many folks like myself who woundln't otherwise venture near a "compiled" language (given the usual ease of use trade-off). |
AdrianS 6-Nov-2012 [3382] | Nenad, could you describe a little the structure that's built up by the lexer? Are you intending to (at some point) allow for some sort of AST-like (if this is not what's generated already) structure to be passed back in along with some way of describing the start/end of a modified region in order to reduce the parsing that would need to be done if the lexer was being called relatively frequently when editing a large source string? |
DocKimbel 6-Nov-2012 [3383x2] | Jerry: when I find time to write it. :-) Probably when I get back to memory manager code to add the few missing parts, like GC and allocation of big memory chunks, that should happen in the next weeks. |
AdrianS: the output of the lexer is nested blocks of Red values, same as REBOL with its own lexer (LOAD). The AST is not stored anywhere, AST nodes are created and consumed on the fly during the compilation. So the closest thing to an AST you can get currently is the output of the lexer. For the needs of a code editor, maybe you could just invoke it on the currently edited line (though you would need to deal with unmatched opening/closing delimiters). I haven't yet though how I will achieve it in Red IDE. | |
NatasjaK 6-Nov-2012 [3385] | This is all far out of my league. Though I had the same feeling when I started working with computers many years ago :-) Keep up the good work! |
DocKimbel 6-Nov-2012 [3386] | It's not as complex as it sounds. Feel free to ask any question about it in Rebol School or in ~ChitChat if it's purely Red-oriented. Open source projects are an excellent way to share knowledge and I would be glad if Red project can help people (including myself) learn something new. |
GiuseppeC 6-Nov-2012 [3387] | Doc and the others: I hav had some considerations about the RED = REBOL issue and I will continue the discussion in the REBOL3 area. |
Kaj 6-Nov-2012 [3388] | I noticed doc-strings are not available yet for #import? |
Jerry 6-Nov-2012 [3389] | It's late to talk about merging. It's been 2 years, Red is getting mature very soon aspecially after the Red/System part is almost done. Don't make any distraction to slow it down. ... Besides, R3 is not open yet (where is the code?), Red and Doc are all we got now. Doc's got the whole plan for Red, which is a good plan. We donate for that plan, not for a merge plan. The latest blog article in Red-lang.org made me realize that we might have a complete and mature Red in one year. |
DocKimbel 6-Nov-2012 [3390x3] | Jerry: that sounds like a realistic deadline to reach 1.0 release, as long as I can keep working full time on Red in 2013. Though, Red should be fully usable in a couple of months, all features would not be there, it won't run at full speed, but it will be enough to be able to build almost any app. |
Kaj: the compiler should accept them from #import too...looking into it.... | |
Nope, no support has been added for doc-strings in #import, but it obviously should be supported. I will add it tomorrow. | |
Kaj 6-Nov-2012 [3393] | Thanks. Will have to wait in my bindings for the next release, though |
Robert 7-Nov-2012 [3394x2] | Doc, how about Red becoming the Rebcode part of R3? IMO that would be a nice addition. |
So, we get both worlds. If we manage to call R3 code from the Red section and vice versa, that would be great. We could use the compiled speed for inner loops and let the interpreter do all the non-speed relevant things. | |
DocKimbel 7-Nov-2012 [3396] | Robert, I guess you mean Red/System and not Red? Well, the license are compatibles, so if someone wants to include Red/System into R3, he doesn't need to ask anyone for permission. |
Pekr 7-Nov-2012 [3397] | Or the other way around, no? With Kaj's system, you can write R3 extensions in Red/System, no? |
Kaj 7-Nov-2012 [3398] | Yep, RedCode for R3 is already here |
older newer | first last |