Giter Club home page Giter Club logo

mol's Introduction

mol

My Own Language - A toy Basic Language Interpreter

This is a Basic Language Interpreter, it is based on an PHP Based version dowloaded from

http://pub.32kb.org/files/entry/pBasic/pBasic.zip

written by http://stackoverflow.com/users/2273749/felix-ruzzoli

pBasic.phrp is in turn s a port of the one file BASIC implementation in JAVA called jASIC to be found here:

http://journal.stuffwithstuff.com/2010/07/18/jasic-a-complete-interpreter-in-one-java-file

I've converted the PHP version to C# and improved it with the following features:

  • Support for '<=', '>=' and '<>' operators, not present in the original version.
  • Suport for "and" and "or" in the boolean expressions, not present in the original version.
  • Support for if-else-endif structure in addition to the basic if then goto.
  • Support for While-Wend.
  • Support gor Gosub and retun.
  • Support for sin, cos, int, round, trim, ltrin, rtrim and substr functions not present in the original version.

An example of the code interpreted by this interpretes is :

Print "Please enter a value"
Input a

i=0

DoWhile i <=10
  Exsr PrintEntry
  i=i+1
EndDo

EndPgm

BegSr PrintEntry

  Print i + " Multiplied by " + a + " equals " + (i*a)

EndSr

mol's People

Contributors

sanotto avatar

Stargazers

 avatar

Watchers

 avatar  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.