From owner-freebsd-chat Mon Oct 2 21:37:57 1995 Return-Path: owner-chat Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA10922 for chat-outgoing; Mon, 2 Oct 1995 21:37:57 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.222.226]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id VAA10913 for ; Mon, 2 Oct 1995 21:37:54 -0700 Received: from localhost (localhost [127.0.0.1]) by time.cdrom.com (8.6.12/8.6.9) with SMTP id VAA29804; Mon, 2 Oct 1995 21:37:37 -0700 To: Brian Tao cc: Warner Losh , chat@FreeBSD.ORG Subject: Re: vgalib for FreeBSD! In-reply-to: Your message of "Mon, 02 Oct 1995 22:57:45 EDT." Date: Mon, 02 Oct 1995 21:37:37 -0700 Message-ID: <29802.812695057@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-chat@FreeBSD.ORG Precedence: bulk > If one of them is a Forth program, his lines would come out > something like: (((ham green_eggs) AND) like) NOT; > sam>I; Heretic! That's some sort of RPN'd LISP you're spoutin' there! It should read: (defun I () (progn (not (like (and green-eggs ham))))) Forth would be: : _i ham @ green-eggs @ and not ; (`I' is already a standard word in forth) :-) Jordan