SimpleCalc

From Esolang
Jump to navigation Jump to search
This article is not detailed enough and needs to be expanded. Please help us by adding some more information.

SimpleCalc is an esolang by User:Ohnoitsnoah that functions as a simple-to-read basic 4 function calculator. This is meant to be as human-readable as possible. It is also meant to be used only in a REPL.

Instruction Set
Command Function
add Adds the number before with the number after
minus Subtracts the number before with the number after
times Multiplies the number before with the number after
div Divides the number before with the number after
equals Prints the output of your equation

Example

repl> 3 times 4 div 2 equals
[1]>9