From 5dc03b8bab84424ed4f6942dfc665e449aad4240 Mon Sep 17 00:00:00 2001 From: Brian Hecker Date: Thu, 2 Oct 2025 19:00:52 -0400 Subject: [PATCH] Adds Brians Functions This adds a function that prints Brians name --- PracticeProject/src/app/App.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/PracticeProject/src/app/App.java b/PracticeProject/src/app/App.java index 9e11cee..a824830 100755 --- a/PracticeProject/src/app/App.java +++ b/PracticeProject/src/app/App.java @@ -1,5 +1,7 @@ package app; +import java.util.Scanner; + public class App { public static void main(String[] args) throws Exception { App app = new App(); @@ -29,9 +31,9 @@ public double add(int x, int y) { return x + y; } - public void uselessFunction1(int what) { - return; - } + public void brianFunction() { + System.out.println("Hi, my name is brian"); + } public void multiplication() { int i = 2*3;