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

[REBOL] Re: rugby and importing function

From: maarten:koopmans:surfnet:nl at: 3-Jul-2002 22:46

Hi, Using Rugby you can create function that return parameterized or composed code. It is simple: coder: func [][ return [ func [in][probe in]]] on the client side you just do: get-rugby-service my-func: do coder my-func 10
>>10
You just return a block of code on the server that you 'do on the client and that then returns a function. HTH, Maarten On Wed, 3 Jul 2002, Gabriele Santilli wrote: