Skip to content

Instantly share code, notes, and snippets.

View KamronKelley's full-sized avatar

Kamron Kelley KamronKelley

  • Earth
View GitHub Profile
@KamronKelley
KamronKelley / ThisIsTheClassFile.java
Created July 12, 2019 05:55
UPDATE 1 Banking project, main and class
package banking;
public class Account {
String name;
double balance;
public Account() {
name = "";
balance = 0.0;
}