- Getting Started
- About
- Folder Structure
- Technologies used
- Dependency Management
- How to download the Project
- Execution
Welcome to the VS Code Java world. Here is a guideline to help you get started to write Java code in Visual Studio Code.
The **JAVA Calculator** project was developed with the purpose of capturing the learning acquired at Faculdade Descomplica.
The workspace contains two folders by default, where:
src
: the folder to maintain sourceslib
: the folder to maintain dependencies
Meanwhile, the compiled output files will be generated in the bin
folder by default.
If you want to customize the folder structure, open
.vscode/settings.json
and update the related settings there.
The project was developed using the following technologies
The JAVA PROJECTS
view allows you to manage your dependencies. More details can be found here.
# clone repository
$ git clone https://github.com/cabraldasilvac/calculadora-java
# enter directory
$ cd ~/javacalculator
# Install dependencies
$ yarn install
# Compile and Start the project
$ javac CalculadoraApp.java && java CalculadoraApp
java CalculadoraApp