Prev: How to Pump $1,000s in CASH & Checks to your door.
Next: www.promptc.com (only $36,free shipping)for 2010 newest Adidas shoes--Paypal
From: Haris Bogdanovi� on 15 May 2010 03:08 Hi. I have allegro cl free express edition. How do I evaluate a whole file ? I see only incremental evaluation option which evaluates only one expression. Thanks
From: Alan Malloy on 15 May 2010 03:47 Haris Bogdanovi� wrote: > Hi. > > I have allegro cl free express edition. > How do I evaluate a whole file ? > I see only incremental evaluation option > which evaluates only one expression. > > Thanks > > Use the load function: [1]> (load "my-file.lisp") ;; Loading file my-file.lisp ... ;; Loaded file my-file.lisp T [2]> -- Cheers, Alan (San Jose, California, USA)
From: Haris Bogdanovic on 15 May 2010 04:50 Can I make a shortcut to load function and then press it when cursor is in editor to load file ?
From: Pascal J. Bourguignon on 15 May 2010 06:10 "Haris Bogdanovic" <fbogdanovic(a)xnet.hr> writes: > Can I make a shortcut to load function and then > press it when cursor is in editor to load file ? Yes: (defun l (x) (load x)) Then press: (l"file")RET -- __Pascal Bourguignon__
From: Haris Bogdanovic on 15 May 2010 06:42
> Yes: (defun l (x) (load x)) > Then press: (l"file")RET I meant keyboard shortcut, sorry ? |