This is the mail archive of the kawa@sources.redhat.com mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: problem with telnet server


Pinte_Stanislas@emc.com wrote:
using the kawa telnet client, I think there is a bug somewhere...
when you evaluate the following expressions in a telnet window, the kawa
process crashes the JVM

(define (append-tab string)
  (string-append string "\t"))

(define (get-line start values line end)
  (if (empty? values)
      (string-append (append-tab (string-append start line)) end)
      (get-line (cdr values)
		     (string-append (append-tab line) (car values)))))
I now get:
<stdin>:7:8: call to 'get-line' has too few arguments (2; must be 4)
--
	--Per Bothner
per@bothner.com   http://www.bothner.com/per/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]