Giter Club home page Giter Club logo

fiftyone's Introduction

FIFTY ONE

A simple language for a simple microcontroller

Variables

varName <- value;

A variable is created with the given name if it does not already exist, otherwise its value is updated. This means that all variables are global. A variable name starts with a letter and afterwards may contain number of alphabetic characters

The value of a variable is always a 8 bits.

Arithmetic

Currently only addition is supported

b <- 10 + a

Control

A while loop takes the form of

while condition do
  stmt1;
  stmt2
end

where condition is a boolean expression.

An if takes the form of

if condition then
  stmt1;
  stmt2
else
  stmt1;
  stmt2
end

Note that when there are multiple statements, each statement is separated by a ;, except the last one.

Statements may also be grouped using parentheses.

Logic

condition may be one of the following

a < b
a > b
a and b
a or b

with the operators reflecting their usual meaning

Example program

var a <- 10;
var b <- 20;
var c <- a+b;

if 2 < 3 then
  c <- 0
else
  c <- c + 1
end;

while c<100 do
  c <- c + 2
end

fiftyone's People

Contributors

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