Compare commits
5 Commits
15802dc26d
...
69c4b34ffb
Author | SHA1 | Date |
---|---|---|
|
69c4b34ffb | |
|
3d637bbb5a | |
|
c112cdc510 | |
|
f08e99ab05 | |
|
5373137fa0 |
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
set -eu
|
||||||
|
cd "$(dirname "$0")"/..
|
||||||
|
set -x
|
||||||
|
rsync -vcr --delete www/ alpha.servers.scheme.org:/production/conservatory/www/gscheme/
|
BIN
www/GScheme.png
BIN
www/GScheme.png
Binary file not shown.
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 186 KiB |
|
@ -2,12 +2,12 @@
|
||||||
<head>
|
<head>
|
||||||
<title>GScheme</title>
|
<title>GScheme</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body text="#000000" bgcolor="#CCCCCC" link="#0000FF" vlink="#000000">
|
<body text="#000000" bgcolor="#CCCCCC" link="#0000FF" vlink="#000000">
|
||||||
|
|
||||||
<H1> GScheme </H1>
|
<H1> GScheme </H1>
|
||||||
|
|
||||||
A GNUstep-aware scheme interpreter.
|
A GNUstep-aware scheme interpreter.
|
||||||
|
|
||||||
Includes many examples, e.g. the sieve of Erathostenes to compute primes, a
|
Includes many examples, e.g. the sieve of Erathostenes to compute primes, a
|
||||||
Koch curve plotter, mandelbrot set, graphs of various functions etc. GScheme
|
Koch curve plotter, mandelbrot set, graphs of various functions etc. GScheme
|
||||||
|
@ -28,18 +28,15 @@ may re-enter it by pressing Alt-V.
|
||||||
<IMG SRC=GScheme.png>
|
<IMG SRC=GScheme.png>
|
||||||
<P>
|
<P>
|
||||||
|
|
||||||
Download it
|
Download it
|
||||||
<A HREF=GScheme.tgz>
|
<A HREF="//files.scheme.org/GScheme-20060213.tar">
|
||||||
here (TGZ)</A>
|
here (TAR)</A>.
|
||||||
or
|
|
||||||
<A HREF=GScheme.zip>
|
|
||||||
here (ZIP; Microsoft Internet Explorer 6).</A>
|
|
||||||
|
|
||||||
<HR>
|
<HR>
|
||||||
|
|
||||||
Special forms implemented include
|
Special forms implemented include
|
||||||
<UL>
|
<UL>
|
||||||
<LI> define, set!, lambda,
|
<LI> define, set!, lambda,
|
||||||
<LI> if, and, or
|
<LI> if, and, or
|
||||||
<LI> begin, apply,
|
<LI> begin, apply,
|
||||||
<LI> quote, case, cond,
|
<LI> quote, case, cond,
|
||||||
|
@ -79,7 +76,7 @@ takes symmetries into account.
|
||||||
New! As of July 31, 2002:
|
New! As of July 31, 2002:
|
||||||
|
|
||||||
<UL>
|
<UL>
|
||||||
<LI> memory management completely reworked
|
<LI> memory management completely reworked
|
||||||
|
|
||||||
<LI> browse-environment pops up a window that shows the current
|
<LI> browse-environment pops up a window that shows the current
|
||||||
environment (e.g. for environment diagrams); browse.scm shows how
|
environment (e.g. for environment diagrams); browse.scm shows how
|
||||||
|
@ -92,7 +89,7 @@ New! As of January 10, 2005:
|
||||||
|
|
||||||
<UL>
|
<UL>
|
||||||
<LI> memory management simplified
|
<LI> memory management simplified
|
||||||
<LI> new UI for browse-environment
|
<LI> new UI for browse-environment
|
||||||
<LI> additional primitives: exp, log, tan, atan
|
<LI> additional primitives: exp, log, tan, atan
|
||||||
<LI> evaluate external files
|
<LI> evaluate external files
|
||||||
<LI> more intutive UI e.g. the last form entered is copied to the paste board
|
<LI> more intutive UI e.g. the last form entered is copied to the paste board
|
||||||
|
@ -174,9 +171,6 @@ New primitives:
|
||||||
<LI> format: format a string using the ~a escape etc.
|
<LI> format: format a string using the ~a escape etc.
|
||||||
</UL>
|
</UL>
|
||||||
|
|
||||||
My homepage is <A HREF=http://www.geocities.com/markoriedelde/index.html>
|
|
||||||
here.</A>
|
|
||||||
|
|
||||||
<HR>
|
<HR>
|
||||||
<A HREF=mailto:markoriedelde@yahoo.de>
|
<A HREF=mailto:markoriedelde@yahoo.de>
|
||||||
markoriedelde@yahoo.de
|
markoriedelde@yahoo.de
|
||||||
|
@ -184,4 +178,4 @@ markoriedelde@yahoo.de
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue