Skip to content

MathLamp LogoRubberSpring - MathLamp stars - MathLamp forks - MathLamp GitHub tag issues - MathLamp

About

MathLamp is a simple, powerful, math-oriented language that can run complex equations in no time.

Install

See Installing

Features

  • Basic Arithmetic operations (+ - * / %)
  • Really simple Algebra (sqrt() and pow())
  • A working REPL to type expressions

Example

out(1 + 1) // Prints 2
x = 3 * 2 // Variables
y = sqrt(4) // Square Root
out(x / y)