r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[Red] Red language group

Pekr
26-Jan-2012
[4431]
Doc - what' coming after floating point support? Are you moving to 
work on Red itself?
Dockimbel
26-Jan-2012
[4432x2]
I have to fix the LibC starting and ending code, then I'll move to 
Red runtime to finish it and start Red's compiler.
I'll also continue to work on the shared library support for Red/System 
at part-time, during weekends. I would like to have it working for 
the conference in Netherlands in march.
Oldes
26-Jan-2012
[4434]
Is there something like QUIT function already?
Dockimbel
26-Jan-2012
[4435]
Yes, QUIT is already defined and needs an integer return code as 
argument.
Oldes
26-Jan-2012
[4436x2]
#import [
	LIBC-file cdecl [
		quit-return: "exit" [  ; Exit program, returning status code.
			status		[integer!]
		]
	]
]

yes.. just found it in C lib as well... goot to know I can use the 
quit without it - I was missing the return code
btw... is there any reason that print does not add the LF automatically?
Dockimbel
26-Jan-2012
[4438x2]
Yes, it is hard to come up with good names for "print-with-LF" and 
"print-without-LF" functions. ;-)
if you need an LF, you can just write: print [value lf]
Endo
26-Jan-2012
[4440]
What about prin and print? Or print and printn ?
Dockimbel
26-Jan-2012
[4441]
It's not perfect, but at least, that way, we only need a single PRINT 
function (no need to remember other names like PRINTF, PRINTLN, PRIN, 
...).
Endo
26-Jan-2012
[4442]
PRINT/LF ?
Dockimbel
26-Jan-2012
[4443x2]
PRIN and PRINT: that was my first choice, but users were pushing 
hard for not having PRIN.
PRINT/LF: no refinements support in Red/System, that will come in 
Red only.
Oldes
26-Jan-2012
[4445]
I think it is better to have print with LF by default.. but ok... 
I must repeat myself that red/system is just a low level:)
PeterWood
26-Jan-2012
[4446]
I think that it would be possible to have the following:
	
	print value   				 ;; automatic line feed
	print [value value lf]			;; no autmatic line feed

Problem is it would confuse newcomers no end.
Oldes
26-Jan-2012
[4447]
btw... if I do print float, I get result like: 100.00000000000000 
. I guess you know this issue.
Dockimbel
26-Jan-2012
[4448]
By default, PRINT for floats maps to `printf ["%.14f" f]`, I guess 
the formatting string passed to PRINTF could be improved.
NickA
26-Jan-2012
[4449]
Since Red is related to REBOL, prin and print seem natural choices.
Dockimbel
26-Jan-2012
[4450x2]
LF by default: sure, but the issue is coming up with a good name 
for PRINT without LF then. We already had a debate here about that 
a few months ago, and having just PRINT ended up being the less problematic 
solution (but it's not perfect I know).
I suppose "%14f" would avoid the extra zeros? (haven't checked the 
PRINTF docs).
Oldes
26-Jan-2012
[4452]
What is wrong with PRIN? It's not more confusing than LF
Dockimbel
26-Jan-2012
[4453]
I wonder if Carl's choice for PRIN was planned or added later when 
the need for a PRINT-WITHOUT-LF arised...
Oldes
26-Jan-2012
[4454x2]
And I think in 99% you want the LF :) At least I forget to add it 
all the time.
Anyway.. not important now.
Dockimbel
26-Jan-2012
[4456x2]
The only issue with PRIN is that it looks odd to all newcomers, not 
knowing about REBOL. I guess also we all found that odd in REBOL 
while learning it. I am used to it now, but it could be seen as "weird" 
choice by people first looking at Red/System.
Also PRIN is breaking the naming conventions used in REBOL, like 
having full words.
Henrik
26-Jan-2012
[4458x2]
Since Red is related to REBOL, prin and print seem natural choices.
 - I agree.
like having full words
 - do words like REFORM not also violate that rule?
Dockimbel
26-Jan-2012
[4460x2]
reform
 is a valid english word, no?
;-)
Henrik
26-Jan-2012
[4462]
but in REBOL, it is a short for REDUCE-FORM.
Dockimbel
26-Jan-2012
[4463]
Yeah, I know. We will use the same words in Red for maintaining compatibility 
with REBOL. I wish we had stricter rules for naming, but I guess 
that it won't hold in practice.
Henrik
26-Jan-2012
[4464]
I think I would just be annoyed that Red tries to "fix" the wording 
of a REBOL function, as it means that you need some kind of alias 
table or must fix scripts or remember two sets of functions in your 
head.
Oldes
26-Jan-2012
[4465]
I guess it's too soon for int64, isn't it?
Dockimbel
26-Jan-2012
[4466x3]
Agreed, and I plan to keep Red as compatible as possible with REBOL 
wrt the syntax, but Red/System, as a dialect, can be a bit different.
int64: too soon yes, adding support for it would break all the current 
integer math code in backends, so not a trivial task. I have not 
planned to support it in this first Red/System version but add it 
only in the v2 (the rewrite in Red). OTOH, if we hit some wall in 
supporting an important feature or binding, I might reconsider that.
It should be possible though, to support it for bindings, but without 
any math operations.
Oldes
26-Jan-2012
[4469x2]
it is used in iMagick. It would be fine without math.
I think it can be simulated with struct but I don§t know how difficult 
it is to implement it just without math.
Dockimbel
26-Jan-2012
[4471x2]
It would take 2-3 days probably.
But I don't want to delay the work on Red compiler anymore, I should 
have started around new year, and I'm still on Red/System...
Oldes
26-Jan-2012
[4473x2]
I must invest which routines are affected, but I think it's not a 
big priority like the float.
What about enums? What is the best way how to work with them in Red/System?
Dockimbel
26-Jan-2012
[4475]
No plan for enums for now. You can use defines instead.
Oldes
26-Jan-2012
[4476x2]
that would be quite a lot defines: https://gist.github.com/1683212
What about adding #enum into the loader?
Kaj
26-Jan-2012
[4478]
I would like enumeration constants to be first class. Possibly integrated 
with a symbol type
Pekr
26-Jan-2012
[4479]
no refinements support in Red/System, that will come in Red only.

 - just curious - isn't such a feature still a valid entry for future 
 Red/System enhancements? It is still in 19.7. section - should be 
 updated in doc as a dismissed feature then ...
Kaj
26-Jan-2012
[4480]
Regarding PRINT, I would suggest simply defining a PRINT-LINE as 
an alternative to PRINT [LF}. There already is one in the C library 
binding, but it just prints a simple string