File: README

package info (click to toggle)
gambc 4.9.3-1.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 85,424 kB
  • sloc: ansic: 1,047,649; lisp: 243,942; perl: 19,018; sh: 6,385; makefile: 6,303; objc: 3,757; cpp: 2,143; sed: 498; java: 305; awk: 198
file content (16 lines) | stat: -rw-r--r-- 585 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
This example is a Java application that provides a user-interface to
the Gambit interpreter's read-eval-print loop.  The application is
composed of two programs: web-repl.scm and Repl.java.  To try out this
example you must start the execution of web-repl.scm.  For instance

  % gsi web-repl &

This starts a ``REPL server'' on port 7000.  The program Repl.java is
a client that connects to this server to start a new REPL. Repl.java
can be run standalone, for instance

  % javac Repl.java
  % java Repl

or as an applet (just visit the file index.html with a Java enabled
browser).