This is a port of Bigloo, a Scheme system which includes a compiler
generating C code and Java classes and an interpreter. Bigloo is the
tool of choice for the construction of small autonomous applications
in Scheme. Bigloo is mostly conformant to the Revised5 Report on the
Algorithmic Language Scheme with many extensions:
Rgc, a lex facility.
Match, a pattern-matching compiler.
Foreign languages interface (connection to C and to Java).
Module language.
Extension package system.
An Lalr facility.
An Object system.
A thread library.
DSSSL support.
Unicode characters and strings.
Process, Pipe and Socket support.
BeanShell is a small, free, embeddable Java source interpreter with object
scripting language features, written in Java. BeanShell dynamically executes
standard Java syntax and extends it with common scripting conveniences such as
loose types, commands, and method closures like those in Perl and JavaScript.
The Bywater BASIC Interpreter (bwBASIC) implements a large
superset of the ANSI Standard for Minimal BASIC (X3.60-1978)
and a significant subset of the ANSI Standard for Full BASIC
(X3.113-1987) in C. It also offers shell programming facilities
as an extension of BASIC. bwBASIC seeks to be as portable
as possible.
Tool to compile and run C programs like a shell script.
First of all, this is not the same as tcc. TCC is a compiler. TCC will preform
its own set of optimizations, just as GCC will preform its own and Clang will
preform its own. The purpose of this script is to give a simple front-end to a
compiler.
Whether it's GCC, Clang, or something else entirely, one can get to choose
their compiler. It's simply satisfying to type c hello.c and see it run
instantly.
C is fast. Being able to write a small, fast, and portable C "script" is great.
One can pass around a C "script" just like s/he would a BASH script.
Clozure CL (formerly known as OpenMCL) is a free Common Lisp
implementation. Features include:
* A fast, precise, compacting, generational garbage collector
written in hand-optimized C. The sizes of the generations are
fully configurable.
* Full native OS threads on all platforms. The API includes support
for shared memory, locking, and blocking for OS operations such
as I/O.
* Full Unicode support.
* Excellent debugging facilities. The names of all local variables
are available in a backtrace.
* A complete, mature foreign function interface.
* Many extensions including: files mapped to Common Lisp vectors
for fast file I/O; thread local hash tables and streams to
eliminate locking overhead; cons hashing support.
C'Dent is a new Acmeist programming language for writing portable modules.
It is based on the computer programming principle known as H.O.P.E.
(Hack Once, Please Everyone)
cfortran.h is an easy-to-use powerful bridge between C and FORTRAN.
It provides a transparent, machine independent interface between
C and FORTRAN routines and global data.
Chibi-Scheme is a very small library intended for use as an extension
and scripting language in C programs. In addition to support for
lightweight VM-based threads, each VM itself runs in an isolated heap
allowing multiple VMs to run simultaneously in different OS threads.
The default language is the R7RS (scheme base) library.
CHICKEN is a compiler for the Scheme programming language. CHICKEN
produces portable, efficient C, supports almost all of the R5RS
Scheme language standard, and includes many enhancements and
extensions.
PHP, which stands for "PHP: Hypertext Preprocessor" is a widely-used Open
Source general-purpose scripting language that is especially suited for
Web development and can be embedded into HTML. Its syntax draws upon C,
Java, and Perl, and is easy to learn. The main goal of the language is to
allow web developers to write dynamically generated webpages quickly, but
you can do much more with PHP.