Update of /cvsroot/wisp/wisp/doc/examples
In directory sc8-pr-cvs1:/tmp/cvs-serv6414/doc/examples
Modified Files:
Makefile.am
Added Files:
whello.wth
Removed Files:
hello.wth
Log Message:
renamed hello.wth to whello.wth
--- NEW FILE: whello.wth ---
;;;; whello.wth - display a familiar greeting
;;
;; Copyleft © 2002 by Andres Soolo (di...@us...)
;; This file is licensed under the GNU GPL v2. If you
;; don't know what that means, please do read the GPL.
;;
;;;; @(#) $Id: whello.wth,v 1.1 2003/01/07 13:44:27 digg Exp $
; Note that this code is not exactly related to hello.was
(include io)
(include linux)
(defun _start
1 "Hello, world!\n" type 0 sys.exit)
; Note that the string literal pushes *two* elements to the stack,
; the first being a pointer to the string and the second being its
; length. |type| takes two elements as well: a string pointer and
; amount of characters to write.
; vim:ft=worth
Index: Makefile.am
===================================================================
RCS file: /cvsroot/wisp/wisp/doc/examples/Makefile.am,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- Makefile.am 30 Sep 2002 18:24:55 -0000 1.39
+++ Makefile.am 7 Jan 2003 13:44:27 -0000 1.40
@@ -7,7 +7,7 @@
#### @(#) $Id$
WORTH_EXAMPLES = angry.wth argenv.wth banana.wth bufinput.wth \
- false.wth hello.wth
+ false.wth whello.wth
EXTRA_DIST = closure.wisp quine.wisp signal.wisp \
rawkey.wisp \
--- hello.wth DELETED ---
|