Git Product home page Git Product logo

simpl's Introduction

SimPL: CS 536 Programming Language

A simple programming language designed for CS 536: Science of Programming course at Illinois Tech.

Overview

I created this parser for fun and to check whether given expressions in the homework are valid or not, which could easily be done by hand in 15 minutes. But why dot that when I could spend 24 hours to make a parser to automate it. It would be fun! (It wasn't).

Syntax

The syntax of SimPL language is described by the BNF grammar below:

op = + | - | * | / | > | < | >= | <= | = | && | ||

const = int | true | false

expr =
    | const
    | var
    | const list
    | var[expr]
    | (expr)
    | expr op expr
    | expr ? expr : expr
    | max(expr, expr)
    | min(expr, expr)
    | size(expr)

stmt =
    | x := expr
    | var[expr] := expr
    | if expr then { stmt } else { stmt }
    | while expr { stmt }
    | stmt; stmt
    | skip

value = const | const list

Compiling and Running

# build executable for the parser
$ make

# parse given file
$ dune exec simpl <filename>

# open libaries in top level
$ make utop

# remove/clean build
$ make clean

TODO

  • Implement automated testing using dune

  • Implement verification system

  • Include position in error message

  • Add array to the grammar

  • Typecheck?

  • Implement small-step and big-step evaluation

simpl's People

Contributors

b72u68 avatar

Watchers

 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.