Giter VIP home page Giter VIP logo

screme's Introduction

Screme

Screme is a really basic Scheme interpretor written in Ruby. This was built as toy for learning and is not intended to be a serious language to write code in.

I don't intend to do anything with this, consider this public domain abandonware.

I figure its better off on GitHub than getting lost on my hard drive. I've done a minimal amount of work to add this README file and add bundler support. Otherwise, this project hasn't been touched since around 2010.

Usage

Screme provides a Read-Eval-Print-Loop where you can evaluate Screme code on the fly:

$ rake repl
Screme REPL
>

Here's a function that computes the nth number of the Fibonacci sequence (note that Screme is not tail-recursive):

(define fib
  (lambda (n)
    (if (< n 2)
      n
      (+ (fib (- n 1)) (fib (- n 2))))))

Running test suites

Scheme has three test suites:

  1. Specs written in Ruby that tests most parts of the implementation of the interpretor. You can run them with just rake spec.
  2. Native functional tests written in Screme. This tests the languages runtime among other thigns. You can run them with cd test && ruby native_test.rb *.scm.

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.