I’m new to cloud9 and I’m not sure how to run java code on here. I have read some articles about it and I was informed that if I do
javac Testing.java
then
java Testing
It will run my file assuming it is name “Testing”.
My code is just
public class Testing {
public static void main (String args []){
System.out.println(“Hello World”);
}
}
I got an error that says “bash: javac: command not found”.
Some people say I need a create my own builder and runner so I did that too according to this video.
Don’t speak his language, but I followed the description and his steps and it still does not work.
Can anyone help me with this? I need to be able to code on cloud9 because I will be using a chromebook in class.
Thank you!