Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 420 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 420 Bytes

A basic racket language interpreter in C

Supporting basic arithmatic operations +, -, /, *

Racket(formerly PLT Scheme) is a general purpose, multi-paradigm programming language in the Lisp-Scheme family. One of its design goals is to serve as a platform for language creation, design, and implementation.

> (+ 1 2)
3
> (* 1 5)
5
> (+)
0