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); - } - } - - } -}