Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/subarnop/Daisy
Simple arithmetic and logical Interpreter.
https://github.com/subarnop/Daisy
Last synced: 2 months ago
JSON representation
Simple arithmetic and logical Interpreter.
- Host: GitHub
- URL: https://github.com/subarnop/Daisy
- Owner: subarnop
- Created: 2014-07-23T15:28:11.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-18T22:08:20.000Z (over 10 years ago)
- Last Synced: 2024-08-03T18:16:14.966Z (6 months ago)
- Language: C
- Size: 406 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- AwesomeInterpreter - Daisy
README
Daisy - Simple Arithmetic and Logical Interpreter
=================================================
![alt text](https://github.com/Subarno/Daisy/blob/master/Screen_shots/File_Input.jpg "Daisy")
--------------------------
Daisy is a simple arithmetic and logical Interpreter. It is developed using the very simple methods of developing an Interpreter. It helps to solve simple arithmetic expressions and also implement logical conditions so as to implement very preliminary idea of programming
Daisy started as a fun project and loved to be a open source in 2014.
Current version of Daisy works on postfix method of solution into a stack data model.Requirements :white_check_mark:
-------------------------------
:pushpin: gcc version 4.x:pushpin: GNU Make
Compilation :arrow_forward:
---------------------------
Once you have setup the dependencies, download the source and compile:
```
$ cd ~/Downloads
$ git clone https://github.com/Subarno/Daisy
$ cd Daisy
$ make
$ ./daisy
```Input using a script file:
```
$ ./daisy /path/to/script
```Keywords :white_check_mark:
---------------------------
```
add --> Addition
sub --> Subtraction
mul --> Multiplication
div --> Division
iff --> Logical operator
more --> Comparison Operator
less --> Comparison Operator
equal --> Comparison Operator
quit --> Quit or End Program
```
> Happy To Code ... Happy To Live :octocat: