ESEMPIO: UN CLIENTE
Contiene un’unica funzione statica (il main), che crea e usa un nuovo oggetto Counter
Non può fungere da stampo per costruire og-getti (non ha dati o funzioni non-static)
public static void main(String args[]) {
Counter c = new Counter();
System.out.println(c.getValue());