[REBOL] A simple question

1999-10-18 Thread lmarzulli
Hi, The operators + and union are both native. If the following lines work ok + 3 2 == 5 3 + 2 == 5 union [3] [2] == [3 2] Why the following line doesn't work? [3] union [2] ** Script Error: union expected set2 argument of type: series bitset. ** Where: union [2] Thank you -- Luis

[REBOL] Selma Re:

1999-10-28 Thread lmarzulli
Welcome to the REBOL email list. Thanks for joining in the discussion. This email list is run by a REBOL script named SELMA: Simple Email List-Managing Applet. Here is some helpful information: Commands to REBOL SELMA are given on the subject line of your message. These commands are currently

[REBOL] epoch? Re:

1999-10-28 Thread lmarzulli
Hi Maybe can be optimized ; ahora: now hms: parse to-string ahora/time ":" seconds-from: (ahora - make date! [1 1 1970]) * 86400 + ((to-integer hms/1) * 3600) + ((to-integer hms/2) * 60) + (to-integer hms/3) ; regards At 04:57 p.m. 28/10/99 -0400, you wrote: In Perl *shudder* and

[REBOL] Recursive data structures

1999-11-03 Thread lmarzulli
Hi Rebols I need some help about recursive data structures (stacks, queues, trees, etc) Which is the best method in Rebol for the creation and manipulation of these structures? Example: The following is a simple C code for insertion and deletion of stack elements. How can be rewritten in REBOL?

[REBOL] UUdecoder utility

1999-11-16 Thread lmarzulli
Hi I just submitted an UUdecoder utility to rebol.org http://www.rebol.org/utility/uudecode.r Regards -- Luis Marzulli e-mail: [EMAIL PROTECTED] Caracas, VENEZUELA -- Earn money when you or your friends are on the Web

[REBOL] none

1999-11-30 Thread lmarzulli
a test

[REBOL] Newby needs some strings help Re:

1999-11-30 Thread lmarzulli
Hi A substring function ; substring of length len from position ini (included) substr: func [str [string!] ini [integer!] len [integer!]] [ copy/part skip str ini - 1 len ] At 12:55 p.m. 30/11/99 -0800, you wrote: Hi, I am new to Rebol and need some help dealing with strings. I've

[REBOL] Valid e-mail addresses

1999-12-01 Thread lmarzulli
Hi A question: Using REBOL How can I test if the username has a mailbox at the e-mail server? In other words: how can I test if @ is a valid e-mail address? (Of course I don't know the password) In other words: how can I send a VRFY SMTP command to a e-mail port? Thank you