home *** CD-ROM | disk | FTP | other *** search
- ;; Eulisp Module
- ;; Author: pab
- ;; File: conform.em
- ;; Date: Sun Jul 4 18:02:03 1993
- ;;
- ;; Project:
- ;; Description:
- ;;
-
- (defmodule conform
- (eulisp0
-
- )
- ()
-
- (defun test-fn (id fn args expect)
- (let ((result (apply fn args)))
- (format t "doing: ~a [~a] ~%expected: ~a~% got: ~a~%" id args expect result)
- (equal expect result)))
-
- ;; end module
- )
-