Skip to content

Instantly share code, notes, and snippets.

@DannyLGZ
DannyLGZ / Text.java
Created July 8, 2021 16:07 — forked from cyyjs/Text.java
简单的自助银行系统(无数据库)
public class Text {
public static void main(String[] args) {
Atm atm = new Atm();
atm.start();
}
}