Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 549 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 549 Bytes

Coding 101

Learn the basics of coding using Java. Let's go!

VS Code settings

If you use VS Code, install the Spotless Gradle extension, then copy the settings to enable automatic formatting:

mkdir .vscode
cp defs/vscode/settings.json .vscode

Group 1: Hello World

Start with the hello-world project to learn some basics of Java syntax.

Group 2: Tic Tac Toe

The tic-tac-toe project is an incomplete Tic Tac Toe game. Complete the game to learn about arrays and array-based algorithms.