guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-oops README


From: Mikael Djurfeldt
Subject: guile/guile-oops README
Date: Fri, 09 Mar 2001 17:26:20 -0800

CVSROOT:        /cvs
Module name:    guile
Changes by:     Mikael Djurfeldt <address@hidden>       01/03/09 17:26:20

Modified files:
        guile-oops     : README 

Log message:
        

CVSWeb URLs:
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-oops/README.diff?r1=1.17&r2=1.18

Patches:
Index: guile/guile-oops/README
diff -u guile/guile-oops/README:1.17 guile/guile-oops/README:1.18
--- guile/guile-oops/README:1.17        Sun Mar  4 18:54:24 2001
+++ guile/guile-oops/README     Fri Mar  9 17:26:20 2001
@@ -1,4 +1,4 @@
-This is release 1.0 of GOOPS, or
+This is release 1.0.2 of GOOPS, or
 Guile Object Oriented Programming System.
 
 Please send bug reports to address@hidden
@@ -62,7 +62,7 @@
 
 Generic functions
 
-  (define-method + ((x <string>) (y <string>))
+  (define-method (+ (x <string>) (y <string>))
     (string-append x y))
 
   (+ 1 2) --> 3
@@ -76,14 +76,14 @@
 
   (use-modules (ice-9 format))
 
-  (define-method write ((obj <2D-vector>) port)
+  (define-method (write (obj <2D-vector>) port)
     (display (format #f "<~S, ~S>" (x-component obj) (y-component obj))
             port))
 
   (define v (make <2D-vector> #:x 3 #:y 4))
   v --> <3, 4>
 
-  (define-method + ((x <2D-vector>) (y <2D-vector>))
+  (define-method (+ (x <2D-vector>) (y <2D-vector>))
     (make <2D-vector>
           #:x (+ (x-component x) (x-component y))
           #:y (+ (y-component x) (y-component y))))
@@ -151,10 +151,10 @@
 Obtaining GOOPS ======================================================
 
 The latest official GOOPS release is available via anonymous FTP from
-ftp.gnu.org, as /pub/gnu/guile/guile-oops-1.0.tar.gz.
+ftp.gnu.org, as /pub/gnu/guile/guile-oops-1.0.2.tar.gz.
 
-Via the web, that's:  ftp://ftp.gnu.org/pub/gnu/guile/guile-oops-1.0.tar.gz
-For getit, that's:    ftp.gnu.org:/pub/gnu/guile/guile-oops-1.0.tar.gz
+Via the web, that's:  ftp://ftp.gnu.org/pub/gnu/guile/guile-oops-1.0.2.tar.gz
+For getit, that's:    ftp.gnu.org:/pub/gnu/guile/guile-oops-1.0.2.tar.gz
 
 If you don't already have Guile 1.4 installed on your system, you
 also need to download and install



reply via email to

[Prev in Thread] Current Thread [Next in Thread]