~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to examples/asdf/file1.lisp

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2006-05-17 02:46:26 UTC
  • Revision ID: james.westby@ubuntu.com-20060517024626-lljr08ftv9g9vefl
Tags: upstream-0.9h-20060510
ImportĀ upstreamĀ versionĀ 0.9h-20060510

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
(princ "======================================================================") (terpri)
 
2
 
 
3
(princ "We are now executing FILE1.LSP") (terpri)
 
4
 
 
5
(defun test-function (x y)
 
6
  (format t "~D + ~D is equal to ~D~%" x y (+ x y)))
 
7
 
 
8
(princ "TEST-FUNCTION has been created") (terpri)