Skip to content

Instantly share code, notes, and snippets.

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

Geoffrey Zoref Gzoref

🏠
Working from home
View GitHub Profile
phrase = "Geoff Zoref";
print(phrase.replace("Geoff", "Amanda"));
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with NO BOM" />
</project>
package OOGreeting;
//Objectr Oriented way
public class Greeter {
public void greet(Greeting greeting) {
greeting.perform();
}
public static void main(String[] args) {