All Manuals > LispWorks Delivery User Guide > 2 A Short Delivery Example

NextPrevUpTopContentsIndex

2.1 Developing the program

The program we use in the example is essentially this:

(in-package "CL-USER")
 
(defun hello-world ()
  (capi:display-message "Hello World!"))

with a couple of small modifications which are not important here.

Perform these steps to "develop" the program:

  1. Open the source file in the LispWorks Editor tool by evaluating this form:
  2. (example-edit-file "delivery/hello/hello")

  3. Compile the program in the LispWorks Editor by the menu command Buffers > Compile .
  4. Test the program by calling (hello-world).

LispWorks Delivery User Guide - 15 Feb 2015

NextPrevUpTopContentsIndex