[REBOL] [REBOL] stand output handle? Re:

2000-03-31 Thread deadzaphod
>To: [EMAIL PROTECTED] >Subject: [REBOL] [REBOL] stand output handle? >Date: Fri, 31 Mar 2000 8:55:27 -0900 > >Does rebol have a standard output handle like c? >Example : In "C" I can write something like this: >//=== >

[REBOL] [REBOL] stand output handle? Re:

2000-03-31 Thread Al . Bri
Tim wrote: > Does rebol have a standard output handle like c? > Example : In "C" I can write something like this: > file://=== > FILE* f; > IF write_to_file THEN > f = fopen("test.htm","w") > ELSE > f = stdout; > ENDIF > fprintf(f,"This could

[REBOL] [REBOL] stand output handle? Re:

2000-03-31 Thread mjelinek
e- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, March 31, 2000 9:55 AM To: [EMAIL PROTECTED] Subject: [REBOL] [REBOL] stand output handle? Does rebol have a standard output handle like c? Example : In "C" I can write something like this: //===

[REBOL] [REBOL] stand output handle?

2000-03-31 Thread tjohnson
Does rebol have a standard output handle like c? Example : In "C" I can write something like this: //=== FILE* f; IF write_to_file THEN f = fopen("test.htm","w") ELSE f = stdout; ENDIF fprintf(f,"This could be written to the console\n"