The simple and satisfiying art of executing a java file from the command line.
Having the next java source
public class Salad {
public static void main(String[] args) {
System.out.println("I'm the best salad in this neighberhood!");
}
}
Run the command below, inside the folder source with java command:
java Sa...
thinkingoutcode.hashnode.dev2 min read