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
- Host: GitHub
- URL: https://github.com/jkrt/tddd55_tutorial_code
- Owner: JKRT
- License: mit
- Created: 2021-11-04T15:00:57.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-10T15:03:45.000Z (over 4 years ago)
- Last Synced: 2025-03-23T22:26:03.852Z (about 1 year ago)
- Language: Julia
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```