Skip to content

Instantly share code, notes, and snippets.

View vasouv's full-sized avatar
😁

Vasilis Souvatzis vasouv

😁
View GitHub Profile
@vasouv
vasouv / Workshop.java
Created February 10, 2017 12:31
JSON (de)serialization using the Processing API - no other libs - Adam Bien
public class Workshop {
private String name;
private int duration;
public Workshop(String name, int duration) {
this.name = name;
this.duration = duration;
}