Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 909 Bytes

File metadata and controls

32 lines (26 loc) · 909 Bytes

Copilot Java

Demo laboratory for VSCode Copilot course Java edition

Dev workflow

# Clone repository
git clone https://github.com/AlbertoBasaloLabs/copilot-java.git
cd copilot-java
# Open in VSCode
code .
# Open terminal 
# Compile Java code
javac -d target src/*.java
# Run Java code
java -cp target Main
# Or run specific module
javac -d target src/*.java && java -cp target Main
javac -d target src/*.java && java -cp target Main weather

AskBot CLI

A CLI educational tool that queries public APIs to provide basic information from the user's IP and associated services:

  • location, weather, currency, and sun.

Ver PRD del proyecto AskBot