Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. package com.name;
  2.  
  3. public class Main {
  4. public static void main (String [] args) {
  5. System.out.println("I have made it");
  6. }
  7. }
  8.  
  9. java Main
  10.  
  11. java com.name.Main
  12.  
  13. Error: Could not find or load main class Main
  14.  
  15. java version "1.8.0_191"
  16. Java(TM) SE Runtime Environment (build 1.8.0_191-b12)
  17. Java HotSpot(TM) 64-Bit Server VM (build 25.191-b12, mixed mode)
  18.  
  19. /Library/Java/JavaVirtualMachines/jdk1.8.0_191.jdk/Contents/Home
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement