Skip to content

Instantly share code, notes, and snippets.

View W4RH4WK's full-sized avatar
🔱
A demon, killing demons

Alex Hirsch W4RH4WK

🔱
A demon, killing demons
View GitHub Profile
@W4RH4WK
W4RH4WK / Main.java
Created April 30, 2013 20:58
Java Finite State Machine
public class Main {
public static void main(String[] args) {
SensorState s = SensorState.One;
s = s.run();
s = s.run();
}
}