Skip to content

Instantly share code, notes, and snippets.

View chiquito83's full-sized avatar
🏠
Working from home

Adrian Grabowski chiquito83

🏠
Working from home
View GitHub Profile
@chiquito83
chiquito83 / FrogsApplication.java
Created April 1, 2022 21:01
Frogs Application
public class FrogsApplication {
public static void main(String[] args) {
System.out.println("I love frogs!");
}
}
@chiquito83
chiquito83 / Frog.java
Created April 1, 2022 20:58
Basic Frog Class
package pond;
public class Frog {
}