From 076c8b5a6d8c34b5b49d510bb095c83d762a9f95 Mon Sep 17 00:00:00 2001 From: buzz-lightsnack-2007 <73412182+buzz-lightsnack-2007@users.noreply.github.com> Date: Mon, 22 Jan 2024 12:00:01 +0800 Subject: [PATCH] removed old testpad --- src/xs_ibdpcompsci_javaintro/testpad.java | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/xs_ibdpcompsci_javaintro/testpad.java diff --git a/src/xs_ibdpcompsci_javaintro/testpad.java b/src/xs_ibdpcompsci_javaintro/testpad.java deleted file mode 100644 index 32a702c..0000000 --- a/src/xs_ibdpcompsci_javaintro/testpad.java +++ /dev/null @@ -1,15 +0,0 @@ -package xs_ibdpcompsci_javaintro; - -public class testpad { - public static void main(String[] args) { - - //Arrays - String[][] KPOP = {{"NAYEON", "JEONGYEON", "MOMO", "SANA", "JIHYO", "MINA", "DAHYUN", "CHAEYOUNG", "TZUYU"}}; - for (String[] KPOP_MEMBERS : KPOP) { - for (String PERSONA : KPOP_MEMBERS) { - System.out.println(PERSONA); - } - } - - } -}