The Squirrel interpreter. See http://www.squirrel-lang.org/

Dependents:   Squirrel

Committer:
jhnwkmn
Date:
Tue Dec 16 10:20:34 2014 +0000
Revision:
0:97a4f8cc534c
Initial import of Squirrel.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jhnwkmn 0:97a4f8cc534c 1 Squirrel 3.0 stable
jhnwkmn 0:97a4f8cc534c 2 --------------------------------------------------------
jhnwkmn 0:97a4f8cc534c 3 What is in this distribution?
jhnwkmn 0:97a4f8cc534c 4
jhnwkmn 0:97a4f8cc534c 5 squirrel
jhnwkmn 0:97a4f8cc534c 6 static library implementing the compiler and interpreter of the language
jhnwkmn 0:97a4f8cc534c 7
jhnwkmn 0:97a4f8cc534c 8 sqstdlib
jhnwkmn 0:97a4f8cc534c 9 the standard utility libraries
jhnwkmn 0:97a4f8cc534c 10
jhnwkmn 0:97a4f8cc534c 11 sq
jhnwkmn 0:97a4f8cc534c 12 stand alone interpreter
jhnwkmn 0:97a4f8cc534c 13
jhnwkmn 0:97a4f8cc534c 14 doc
jhnwkmn 0:97a4f8cc534c 15 The manual
jhnwkmn 0:97a4f8cc534c 16
jhnwkmn 0:97a4f8cc534c 17 etc
jhnwkmn 0:97a4f8cc534c 18 a minimalistic embedding sample
jhnwkmn 0:97a4f8cc534c 19
jhnwkmn 0:97a4f8cc534c 20 samples
jhnwkmn 0:97a4f8cc534c 21 samples programs
jhnwkmn 0:97a4f8cc534c 22
jhnwkmn 0:97a4f8cc534c 23
jhnwkmn 0:97a4f8cc534c 24 HOW TO COMPILE
jhnwkmn 0:97a4f8cc534c 25 ---------------------------------------------------------
jhnwkmn 0:97a4f8cc534c 26 GCC USERS
jhnwkmn 0:97a4f8cc534c 27 .........................................................
jhnwkmn 0:97a4f8cc534c 28 There is a very simple makefile that compiles all libraries and exes
jhnwkmn 0:97a4f8cc534c 29 from the root of the project run 'make'
jhnwkmn 0:97a4f8cc534c 30
jhnwkmn 0:97a4f8cc534c 31 for 32 bits systems
jhnwkmn 0:97a4f8cc534c 32
jhnwkmn 0:97a4f8cc534c 33 $ make
jhnwkmn 0:97a4f8cc534c 34
jhnwkmn 0:97a4f8cc534c 35 for 64 bits systems
jhnwkmn 0:97a4f8cc534c 36
jhnwkmn 0:97a4f8cc534c 37 $ make sq64
jhnwkmn 0:97a4f8cc534c 38
jhnwkmn 0:97a4f8cc534c 39 VISUAL C++ USERS
jhnwkmn 0:97a4f8cc534c 40 .........................................................
jhnwkmn 0:97a4f8cc534c 41 Open squirrel.dsw from the root project directory and build(dho!)