Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saro0307/calculator-app
A Simple Calculator application built using Julia
https://github.com/saro0307/calculator-app
julia julia-language
Last synced: about 2 months ago
JSON representation
A Simple Calculator application built using Julia
- Host: GitHub
- URL: https://github.com/saro0307/calculator-app
- Owner: saro0307
- License: mit
- Created: 2023-12-27T13:52:48.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-27T14:00:26.000Z (about 1 year ago)
- Last Synced: 2024-10-13T22:24:08.182Z (3 months ago)
- Topics: julia, julia-language
- Language: Julia
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Calculator App
A basic calculator application, implemented in Julia.
## Usage
1. Enter two numbers in the input fields.
2. Choose an operation from the dropdown menu.
3. Click the "Calculate" button to see the result.## Operations
- Addition (+)
- Subtraction (-)
- Multiplication (*)
- Division (/)## Error Handling
The application displays an error message for invalid input or division by zero.
## How to Run
Ensure you have Julia installed. Run the script:
```julia
include("calculator.jl")
```Make sure to adapt the file name if your Julia script has a different name than the Python script.
**Note**: Ensure that the necessary Julia dependencies are installed before running the script.
Example:
```julia
# Run the script
include("calculator.jl")
```Feel free to customize the instructions based on the specifics of your Julia implementation.