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

[REBOL] Re: local vars in functions

From: chrismorency:videotron:ca at: 24-Apr-2002 0:26

Hi, Have you looked at function ? ie myfunc: function [arg1 arg2] [local1 local2] [source] or myfunc: function [ arg1 arg2 ] [ local1 local2 ] [ source ] it pretty much what you want, plus if you use the following