Daniele Baieri

1
reputation
4

Informatics student at day. Death Metal guitarist at night.

Interested in recursive algorithms and literally everything about programming, though currently I can only code in Java and Python plus some Assembly. Always looking forward to learn more about languages.

public void salute(String[] all_users){ print("Hi "+all_users[0]) all_users.pop(0) if (all_users.length() > 0){ this.salute(all_users) } }