Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Antwort: Antwort: Rebol Bug-List Re:(3)

From: sharriff:aina:med-iq at: 13-Oct-2000 14:42

Isīnt this the same as defining an unamed function without arguments? Sharriff Aina med.iq information & quality in healthcare AG Gutenbergstr. 42 41564 Kaarst tel.: 02131-3669-0 fax: 02131-3669-599 www.med-iq.de Petr.Krenzelo [k--trz--cz] An: [list--rebol--com] Kopie: 13.10.00 Thema: [REBOL] Antwort: Rebol Bug-List Re:(3) 14:11 Bitte antworten an list [Sharriff--Aina--med-iq--de] wrote:
> Hi Guys! > > Iīve seen The word "does" a few times with objects. Can somone tell me > where to look up info on it? its not in the core dictionary or users
guide.
->> source does does: func [ {Defines a function that has no arguments or locals.} [catch] body [block!] "The body block of the function" ][ throw-on-error [make function! [] body] ] ->>