A mirror of the Scheme 48 mercurial repositories - https://www.s48.org/

Marcus Crestani 1d4e0038ed Open toy-button for textures example. 12 years ago
bench c07b8da10d Subject: Add scheme48-opt-only [s48-tuebingen @ 2117] 18 years ago
build d3138dc699 Merge. 13 years ago
c 0514dcfb58 Allocate xlib's external event uid in Scheme. 12 years ago
doc d3138dc699 Merge. 13 years ago
emacs 8b6b8f9e7b Subject: Remove XEmacsism from cmuscheme48.el [s48-tuebingen @ 1356] 19 years ago
m4 d3138dc699 Merge. 13 years ago
ps-compiler faf3fd4004 Add author information to the best of my abilities. 13 years ago
scheme 1d4e0038ed Open toy-button for textures example. 12 years ago
.hgempty adda00d5a5 Subject: Set svn:ignore property on doc/src [s48-tuebingen @ 916] 20 years ago
.hgeol cbd36d8f7c Add .hgeol. 14 years ago
.hgignore d3138dc699 Merge. 13 years ago
CONTRIBUTORS faf3fd4004 Add author information to the best of my abilities. 13 years ago
COPYING f3ebb3cc4a Update latest copyright year 2010 -> 2012. 13 years ago
COPYING.rtf faf3fd4004 Add author information to the best of my abilities. 13 years ago
INSTALL 6dee3b9250 Fix up copyright notices. 14 years ago
Makefile.in 8e59969bda Add xlib-packages as a build dependency. 12 years ago
README 6dee3b9250 Fix up copyright notices. 14 years ago
WINDOWS.txt 08308a8502 Note update to Visual C++ 2010 Express in WINDOWS.txt. 13 years ago
autogen.sh faf3fd4004 Add author information to the best of my abilities. 13 years ago
config.guess 90b027b6d9 Bump copyright year. 17 years ago
config.sub 90b027b6d9 Bump copyright year. 17 years ago
configure.in d3138dc699 Merge. 13 years ago
ffi-test.vcxproj 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
ffi-test.vcxproj.filters 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
ffi-test.vcxproj.user 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
gdbinit b90624ec1e Scheme 48 0.45 from tarball. 28 years ago
install-sh 6dee3b9250 Fix up copyright notices. 14 years ago
mkinstalldirs cfdac6afdd Subject: Create installation directories [s48-tuebingen @ 834] 20 years ago
r6rs.vcxproj 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
r6rs.vcxproj.filters 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
r6rs.vcxproj.user 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
scheme48.sln 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
scheme48.vcxproj 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
scheme48.vcxproj.filters 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
scheme48.vcxproj.user 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
srfi-27.vcxproj 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
srfi-27.vcxproj.filters 5601e4844e Update to Visual C++ 2010 Express. 13 years ago
srfi-27.vcxproj.user 5601e4844e Update to Visual C++ 2010 Express. 13 years ago

README

; Part of Scheme 48 1.9. See file COPYING for notices and license.

Please report bugs to scheme-48-bugs@s48.org, and include
the version number in your message.

Installation instructions in file INSTALL.

A user's guide is in file doc/user-guide.txt.

Recent changes are listed in file doc/news.txt.

Known bugs and things to do in the future are listed in doc/todo.txt.

Send mail to scheme-48-request@s48.org to be put on a
mailing list for announcements, discussion, bug reports, and bug
fixes.

-----

The Scheme 48 root directory is organized as follows (not all files are
listed here):

README this file
WINDOWS.txt notes on the Windows port
INSTALL installation instructions
COPYING notices and licenses
COPYING.rtf copyright notice in RTF format
configure configuration script
Makefile.in input to configure
doc/ some documentation
scheme48.man a Unix-style manual page
manual.ps manual in Postscript
manual.pdf manual in PDF
html/ manual in html (the root is html/index.html)
src/ manual sources
todo.txt list of improvements we hope to make someday
news.txt list of improvements we have already made
io.txt how the I/O system works
scheme/ scheme source files
packages.scm meta-module definitions
interfaces.scm system interface definitions
more-interfaces.scm system interface definitions
*-packages.scm module definitions
bcomp/ the byte-code compiler
vm/ virtual machine sources (written in Pre-Scheme)
rts/ run-time system sources
link/ static linker
env/ development environment modules (debugger, etc.)
big/ useful Scheme libraries and extensions ("Big Scheme")
cml/ Concurrent ML libraries
alt/ portable implementations of some Scheme 48 features
opt/ optional code optimizer for the byte-code compiler
prescheme/ code for running the VM using Scheme 48
debug/ debugging utilities, tests, etc.
misc/ very miscellaneous things (e.g. AMB operator)
posix/ interface to POSIX system calls
srfi/ SRFI implementations
sort/ sorting libraries
ps-compiler/ Pre-Scheme -> C compiler
c/ c source files
sysdep.h.in input to configure
scheme48vm.c most of the VM (generated by Pre-Scheme compiler)
scheme48vm.h extern declarations for scheme48vm.c
scheme48vm-prelude.h internal declarations for scheme48vm.c
scheme48heap.c storage management (generated by Pre-Scheme compiler)
scheme48heap.h extern declarations for scheme48heap.c
scheme48read-image.c reading a heap from a file
scheme48write-image.c writing a heap to a file
scheme48image.h extern declarations for scheme48...-image.c
scheme48write-barrier.h WRITE_BARRIER(...) macro
main.c entry point for the VM
prescheme.h part of the VM
bignum.c large integers
bignum.h declarations for large integers
bignumint.h internal declarations for large integers
external.c support for calling C and being called from C
extension.c default definition of vm_extension()
scheme48.h C declarations and macros for Scheme 48 data structures
scheme48.h.in template for scheme48.h
old-scheme48.h old version, included for compatibility
c-mods.h minor additions to the C language
event.h header file for OS interface
io.h ditto
fd-io.h ditto
srfi-27.c C-side support for SRFI 27 (random bits)
asm-glue.c support code for (upcoming) native code
unix/ Unix-specific source files
unix.h header file for unix/* files
posix/ C half of interface to POSIX system calls
fake/ C files for insufficiently POSIX-compliant systems
build/ code for building the system
filenames.make included by Makefile, generated automatically
filenames.scm code for generating filenames.make
initial.image an image file containing a minimal Scheme system
initial.debug debugging database for same
initial.scm script for creating initial.image
build-usual-image script for creating scheme48.image
load-linker.exec script for loading the external linker
build-external-modules script for creating external-module initializer
minor-version-number current version number
generate-c-header.bat Windows batch file for generating c/scheme48.h
build-usual-image.bat Windows batch file for creating scheme48.image
build-initial-image.bat Windows batch file for creating build/initial.image
i-know-what-i-am-doing.bat Windows batch file for compiling VM to C
scheme48.wxs WiX script for generating scheme48.msi
build/{UnicodeData.txt,PropList.txt,SpecialCasing.txt,CaseFolding.txt,CompositionExclusions.txt}
Unicode data files
emacs/ Emacs support