Answers for "how to compile and run java program in mac terminal"

0

How do I compile and run a program in Java on my Mac?

cd ~
javac HelloWorld.java
//for running it
java HelloWorld
Posted by: Guest on October-20-2020
0

java in terminal

jshell
|  Welcome to JShell -- Version 12.0.1
|  For an introduction type: /help intro

jshell> int i=99;
i ==> 99

jshell> System.out.println(i);
99
Posted by: Guest on September-11-2020

Code answers related to "how to compile and run java program in mac terminal"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language