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

World: r3wp

[!REBOL3-OLD1]

Anton
27-Jan-2007
[1898]
How would this block be treated ?
[a b 1 + 2]
Ladislav
28-Jan-2007
[1899x3]
when speaking about the REBCODE APPLY, variables A and B would be 
examined to obtain their values.
but when speaking about my proposed GET change, the block should 
contain only variables, similarly as the SET block is allowed to 
contain only variables
GET versus REDUCE: there is a difference. When a variable refers 
to a function, REDUCE evaluates the function, while get just obtains 
the function without evaluating it.
Anton
29-Jan-2007
[1902x2]
Ah now it makes sense.
GET sounds good to me.
Pekr
7-Feb-2007
[1904]
hmm, almost 2 months from latest R3 related blog. And only 3plus 
months to DevCon ... I wonder if we will see running alpha at least? 
:-)
Oldes
7-Feb-2007
[1905]
Carl is not writing blog, so he's writing code, that's good, isn't 
it? :)
Pekr
7-Feb-2007
[1906]
if he is writing code, then yes, of course :-)
Henrik
7-Feb-2007
[1907]
a couple of new blog entries discussing ++/-- and ranges
Geomol
10-Feb-2007
[1908]
In the comments about ++/--, I suggested a new way of defining arguments 
to functions:

>> mult2: func [value:] [value * 2]
>> mult2 4
== 8
>> a: 3
>> mult2 a
== 6
>> a
== 6

With this addition to the language, INC could be written:

inc: func [value:] [value + 1]


Of course it would be better to have INC native, but with my suggestion, 
it will be possible to make our own functions, that works like INC 
and DEC.

What do you think?
Volker
10-Feb-2007
[1909x2]
is an extra  get /set that much effort?
but  i dont  like  funcs that  way. i read a and think  it is  evaluatet. 
leads  to confusion.
Geomol
10-Feb-2007
[1911]
Volker, maybe not. But then we should just stick with

a: a + 1

shouldn't we?
Volker
10-Feb-2007
[1912x4]
if  it  looks like an operatorthat say  "exception"
but i prefer    a: + 1
or     inc 'a
a:  -  1 ; disambigius.
Geomol
10-Feb-2007
[1916x3]
Volker, I follow you. Our normal way of thinking about functions 
and lines of code in REBOL is, that if we see a word, and we recognize 
it as a function, we look for arguments after the word. And we wouldn't 
think, those arguments would be changed. If words (variables) change 
value, we expect a set-word (like a:). Conclusion might be, that 
my suggestion will probably lead to more confusion. Falling back 
to ++/-- (or INC/DEC), those might be confusing too.
Problem with

a: + 1


is, that the plus sign can be seen as a unary plus. Because what 
should this mean?

a: + b
Same with unary minus as you point out.
Volker
10-Feb-2007
[1919x2]
yes, but if we think c,   += and  -=  are  a close accosiation.
unary + makes no  sense.  unary minus makes, thatis a  problem.
Geomol
10-Feb-2007
[1921x2]
a+: 1
maybe?
Not good, because a+ is a valid word.
Volker
10-Feb-2007
[1923x2]
or  without space,  a:+  1
but these break syntax.
Geomol
10-Feb-2007
[1925]
hmm yes ... and yes.
Volker
10-Feb-2007
[1926]
although, an operator-word! as datatype?
Geomol
10-Feb-2007
[1927]
argh, it's hard to define a language! :-)
Volker
10-Feb-2007
[1928x2]
yep
a:+ is  already an url.
Pekr
10-Feb-2007
[1930]
Geomol - your function posted in blog works without the set-word, 
so why you needed it to work via a set-word?
Geomol
10-Feb-2007
[1931x2]
Because:

>> mult2: func [value] [value * 2]
>> a: 3
>> mult2 a
== 6
>> a
== 3

a isn't changed.
If ++/-- are introduced, they'll change a this way:

>> a: 3
>> ++ a
== 4
>> a
== 4
Pekr
10-Feb-2007
[1933]
ah, I see ...
Geomol
10-Feb-2007
[1934x2]
My argument is, that if something like ++/-- are introduced in the 
language, I as a programmer would expect, that I can make my own 
++/-- like functions very easily.
I keep thinking about operators (of type op!). It's not possible 
to make new operators in REBOL afaik. Why not? Can we come up with 
an easy way to make new user-defined operators?
Pekr
10-Feb-2007
[1936]
I don't need such functions. IMO operators already break rebol left 
to right evaluation. IMO it only will cause more confusion. INC a, 
DEC a, is imo much more rebolish.
Volker
10-Feb-2007
[1937]
Its not possible because  Carl hardwired them in r2. AFAIK its posible 
 in r3.
Pekr
10-Feb-2007
[1938]
Volker - how do you know? :-)
Volker
10-Feb-2007
[1939]
Because in some chat  somewhere Carl hinted it. IIRC  and  all.
Geomol
10-Feb-2007
[1940x6]
Maybe something like:

>> root: operator [arg1 arg2] [arg1 ** (1 / arg2)]
>> 27 root 3
== 3


This define root as an operator, which will calculate a given root 
of a value. The 3th root of 27 is 3, because 3 * 3 * 3 = 27
Or maybe the operator should be defined the other way around, so 
I should write:

>> 3 root 27
But is it REBOLish? :-) Like Pekr is concerned with. REBOL is a different 
language. It's more of a human language than a computer language. 
I think, a key to decide the structure of the language is to look 
at the sentences, it's possible to write with the language, and then 
see if those sentences makes sense and are easy to read and understand.
Today I can define root as a function:

>> root: func [arg1 arg2] [arg1 ** (1 / arg2)]

and use it:

>> a: root 100 3
== 4.64158883361278


The question is, if it will be better to be able define root as an 
operator and then write:

>> a: 100 root 3
== 4.64158883361278
We can also look at it this way:

Anything is possible in dialects. It's possible to make a dialect 
parsing a block, where I can use root as an operator. If it's possible 
in a dialect, why shouldn't it be possible directly in the language? 
Of course it's then easier to make code hard to read and understand, 
but that's possible today with dialects. Will we as developers have 
the freedom to do almost anything, and then it's up to us to develop 
code easy to read and understand, or will we like restrictions? If 
the freedom is used the right way, it's also easier to develop code, 
that IS easier to read and understand.


My point of view is, that when the language has operators, it should 
be possible to make our own operators too.

If ++/-- are introduced, it should be possible in an easy way to 
make our own functions working the same way.
Actually we're already used to the way INC/DEC would work, just with 
other datatypes. If I wanna sort a series, I e.g. write:

>> blk: [3 5 2]
>> sort blk
== [2 3 5]
>> blk
== [2 3 5]


The block is changed directly by the sort command (function). Without 
this mechanism, I would have to write:

>> blk: sort blk

In this regard, it makes very much sense to be able to write:

>> a: 4
>> inc a
== 5
>> a
== 5
Gabriele
10-Feb-2007
[1946x2]
Geomol: your arg: suggestion can't work. (to say it another way: 
it would require very deep changes to rebol)
also, how is that different from using a 'arg and set?