[REBOL] interfaces to c/fortran Re:

1999-10-09 Thread Petr . Krenzelok
Hi, [EMAIL PROTECTED] wrote: I would like to know if ROBOL can interfac to c/fortran... every other scripting language can. In REBOL and "hw" communication ... thread Jeff mentioned there is going to be some option for us to support something, but I clearly don't understand, what's it gonna

[REBOL] ED

1999-10-09 Thread morgenw
David, Have you seen any support files For ED REBOL (like color syntax) I am on the trial Copy version 3.8 I use Kedit now .. It has color syntax and macros. I write simple macros but is it very painful to write complex ones. I could not find any add-in files on their site to support REBOL.

[REBOL] Insuring domain-specific semantics

1999-10-09 Thread brannon
Could someone comment on how one insures domain specific semantics. For example, I can imagine many domains where the word 'create' might have utility. As long as each domain only loads its own files, everything is OK, but, for peaceful cooperation of the same words in different domains in a

[REBOL] Re: How to you make up a URL

1999-10-09 Thread giesse
On 08-Ott-99, [EMAIL PROTECTED] wrote: e address: "www.rebol.com" e aUrl: to-url [ "http" address ] aUrl: to-url reduce ["http" address] :reduce evaluates the word 'address into its value; to-url doesn't evaluate its argument. Regards -- o) .-^-.

[REBOL] system call? how? Re:

1999-10-09 Thread ingo
Hi, Those were the words of [EMAIL PROTECTED]: 1: how does one execute a system call? I need to print a file I retrieved from a http site Short answer: You don't. Long answer: It's not possible in Rebol/core, you'll have to wait for rebol/command, or something like that. Up to then, just

[REBOL] system call? how? Re:(3)

1999-10-09 Thread Al . Bri
write %//prn join "Now is the winter of our discontent, made glorious by this son of york!" "^L" I got my "/" in the wrong place! ^_^ Andrew Martin [EMAIL PROTECTED] http://members.xoom.com/AndrewMartin/ Online @ 33,600 Baud! --

[REBOL] Cool Interview with Carl :-)

1999-10-09 Thread Petr . Krenzelok
Hi, just look at this: http://www.rediff.com/computer/1999/sep/29carl.htm -pekr- Czech Amiga News folk :-)

[REBOL] Using Rebol with a Mac web server

1999-10-09 Thread lee
Can you use rebol for CGI with a Mac web server? I would like to use it with the free version of Quid Pro Quo 2.1.2, but have been unable to get it configured. (Only to me 10 minutes to get working with the Roxen webserver on a Sun box.) -- Onward and Upward! Lee A. Joramo }}- Cowboy on

[REBOL] upgrade error Re:

1999-10-09 Thread Al . Bri
I've got a similar problem: upgrade connecting to: www.rebol.com ** Syntax Error: Missing ] at end-of-script. ** Where: (line 451) !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" rebol/version == 2.1.2.3.1 Andrew Martin [EMAIL PROTECTED] http://members.xoom.com/AndrewMartin/ Online @ 33,600

[REBOL] system call? how? Re:(3)

1999-10-09 Thread rryost
For a .txt file or a REBOL script, print read %filename.r ; or whatever the file is, and perhaps more path stuff is needed. Russell, [EMAIL PROTECTED] - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, October 09, 1999 3:25 PM Subject: [REBOL] system

[REBOL] upgrade error Re:

1999-10-09 Thread allenk
I sent a note about this to feedback on Saturday. I'm sure they'll fix on Monday. Allen K - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, October 10, 1999 9:43 AM Subject: [REBOL] upgrade error REBOL 2.1.1.3.1 I don't have latest version of rebol,

[REBOL] rebol2perl? implementation? Re:

1999-10-09 Thread allenk
- Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, October 09, 1999 10:07 PM Subject: [REBOL] rebol2perl? implementation? Ok, you knew someone was going to ask: how about a rebol2perl conversion tool! Oh a time machine :-) You want to go backwards in

[REBOL] how could a word not have a value? I just loaded the $#@!@$!%*%^$ file! Re:(2)

1999-10-09 Thread Petr . Krenzelok
[EMAIL PROTECTED] wrote: Part 1.1Type: Plain Text (text/plain) Encoding: 7bit I am sorry, I hate html emailing, what just did my Netscape to the email??? Uh. -pekr-

[REBOL] why cant rebol print a function word Re:

1999-10-09 Thread rryost
I'm not sure what you're trying to do; see comments interleaved below. Russell, [EMAIL PROTECTED] - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, October 09, 1999 7:30 PM Subject: [REBOL] why cant rebol print a function word

[REBOL] how could a word not have a value? I just loaded the $#@!@$!%*%^$ file! Re:

1999-10-09 Thread jgoodnow
Hi! Loading a file just loads the values, it doesn't actually evaluated them. Try: do http://rebol.org/file/recursive-dir.r Hope that helps. - jim At 07:52 PM 10/9/99 -0700, you wrote: brannon@strand /disks/redondo/brannon/rs/bp/experiment/99 : rebol REBOL 2.1.2.4.2 Copyright (C) 1998-1999

[REBOL] how could a word not have a value? I just loaded the $#@!@$!%*%^$ file! Re:

1999-10-09 Thread rryost
Others have pointed out you haven't executed the script by simply loading it. But the script bothers me; the argument for 'recursive-files, 'path, is required to be of type file! (not path!)?? Russell, [EMAIL PROTECTED] - Original Message - From: [EMAIL PROTECTED] To: [EMAIL

[REBOL] why cant rebol print a function word Re:

1999-10-09 Thread icimjs
Hi Terrence, you wrote: You would think REBOL would print out a bound function just as it did the bound value... otherwise you might think it has no value at all. 1. What you can do is use source, probe or print mold :f f: func [x y] [x = y] source f f: func [x y][x = y] probe :f func [x

[REBOL] how could a word not have a value? I just loaded the $#@!@$!%*%^$ file! Re:

1999-10-09 Thread icimjs
Hi Terrence, you wrote: load http://rebol.org/file/recursive-dir.r load http://rebol.org/file/recursive-dir.r connecting to: rebol.org [...] == [ recursive-files: function [path [file!]] [files file file-list] [ files: load path file-list: to-block 1 ... recursive-files

[REBOL] Cool Interview with Carl :-) Re:

1999-10-09 Thread jgoodnow
Hey whaddayaknow, my name in print!! - jim At 12:47 AM 10/10/99 +0100, you wrote: Hi, just look at this: http://www.rediff.com/computer/1999/sep/29carl.htm -pekr- Czech Amiga News folk :-)

[REBOL] Curious what REBOL/Command will over bussiness wise ...

1999-10-09 Thread Petr . Krenzelok
Just mistakenly visited http://www.scriptics.com site instead of scripting.com, and found out the site is of a commercial version of TCL/Tk, TclPro. There is a product, called Bizconnect, which nicely shows, how to integrate language into a bussiness solutions, and those, enable IT managers in

[REBOL] Cool Interview with Carl :-) Re:(2)

1999-10-09 Thread Petr . Krenzelok
Hi Jim, [EMAIL PROTECTED] wrote: Hey whaddayaknow, my name in print!! not only you, Sterling and Jeff too :-) I am waiting for REBOL website every minute, as it should come very soon. The same was said about many more examples of dialects :-) Jim, were you familiar also with Carl's REBOL