Ultra Geile Studenten Benutzer Oberfläche (UGSBO)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
313 B

package ugsbo.com.buchhaltung;
public class Blockchain {
Block erster;
public Blockchain() {
erster = new Block(0);
}
public void add(int eingabe) {
// TODO Auto-generated method stub
}
public int kontostand() {
// TODO Auto-generated method stub
return 0;
}
}