Giter Site home page Giter Site logo

goscheme's Introduction

goscheme

A R5RS-compliant Scheme interpreter in Go.

Go is a great language for or building a Scheme interpreter, since it's portable, garbage collected and fast. The result is a one file distribution, which makes it easy to deploy. The garbage collection unloads that work from the interpreter, using Go's GC.

Setup

Run the example

$ goscheme -file $GOPATH/src/github.com/markcol/goscheme/example.scm

Run it interactively

$ goscheme -i

Syntax


(quote exp)

Return exp literally; do not evaluate it.

(quote (a b c))

or

'(a b c)

Returns:

(a b c)

(if test conseq alt)

Evaluate test; if true, evaluate and return conseq; otherwise evaluate and return alt.

(if (< 10 20) 
    (+ 1 1)
  (+ 3 3))

Returns:

2

(set! var exp)

Evaluate exp and assign that value to var, which must have been previously defined (with define or as a parameter to an enclosing procedure).

(set! x2 (* x x))

(define var exp)

Define a new variable and give it the value of evaluating the expression exp.

(define r 3)
(define square (lambda (x) (* x x)))

(lambda (var...) body)

Create a procedure with parameter(s) named var and the expression body as the body.

(lambda (r) (* 3.141592653 (* r r)))

(begin exp...)

Evaluate each of the expressions in left-to-right order, and return the final value.

(begin (define x 1) (set! x (+ x 1)) (* x 2))

Returns:

4

(proc exp...)

If proc is anything other than one of the symbols if, set!, define, lambda, begin, or quote then it is treated as a procedure. It is evaluated using the same rules defined here. All the expressions are evaluated, and then the procedure is called with the list of expressions as arguments.

(square 12)

Returns:

144

goscheme's People

Contributors

markcol avatar

Stargazers

Alexander I.Grafov avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.