
antonio neto
208 Pointsbash: javac.introductions.java: command not found
when I type javac.introductions.java shows me a message... bash: javac.introductions.java: command not found how do I fix it ?
2 Answers

noob developer
8,687 Pointshi, To run a program in java in workspaces u need to type : javac something.java && java something
something = the name of ur file.
if it helps u please mark as best answer

Lauren Moineau
6,189 PointsAccording to your post, your command is:
javac.introductions.java
when the command should be:
javac Introductions.java
Hope that helps
antonio neto
208 Pointsantonio neto
208 Pointsthx, but already try that