An open API service indexing awesome lists of open source software.

https://github.com/jkrt/tddd55_tutorial_code

Some examples for the course TDDD55
https://github.com/jkrt/tddd55_tutorial_code

Last synced: 3 months ago
JSON representation

Some examples for the course TDDD55

Awesome Lists containing this project

README

          

# TDDD55_Tutorial_Code
Some examples for the course TDDD55

## Some additional information
There are two variants of the recursive descent calculator.
recursiveDescentCalculator.jl implements a calculator.
The other example simply accepts or rejects the given expression.

## Example on how to run the recursive descent calculator
```
> julia recursiveDescentCalculator.jl
Enter expression => (4+4)*3
Result of res is: 24.0
Enter expression => (4+4)*3+(4+4)*3
Result of res is: 48.0
Enter expression => 9/3
Result of res is: 3.0
```