mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 16:38:24 +00:00
10 lines
309 B
Java
Executable file
10 lines
309 B
Java
Executable file
/* Lesson 2 Coding Activity Question 2 */
|
|
|
|
public class U2_L2_Activity_Two {
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println(
|
|
"\"That brain of mine is something more than merely mortal; as time will show.\"\nAda Lovelace\nThe first computer programmer"
|
|
);
|
|
}
|
|
}
|