Skip to content

Instantly share code, notes, and snippets.

@Joseph-M
Joseph-M / Account.java
Created May 2, 2013 22:13
Implementation of a pseudo bank ATM machine.
package assignment_04;
import java.util.ArrayList;
import java.util.Date;
// General account class
class Account {
int id;
double balance;
Date dateCreated = new Date();
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js?1.29.1"></script>
<style type="text/css">
body {
background: #000;
}