o erro:
init:
deps-jar:
Compiling 1 source file to C:\Documents and Settings\Administrador\olamundo\build\classes
C:\Documents and Settings\Administrador\olamundo\src\olamundo\Main.java:28: unclosed character literal
System.Out.println (‘Ola Mundo!’);
C:\Documents and Settings\Administrador\olamundo\src\olamundo\Main.java:28: unclosed character literal
System.Out.println (‘Ola Mundo!’);
C:\Documents and Settings\Administrador\olamundo\src\olamundo\Main.java:28: ‘)’ expected
System.Out.println (‘Ola Mundo!’);
3 errors
BUILD FAILED (total time: 0 seconds)
o codigo:
/*
- Main.java
- Created on 21 de Dezembro de 2006, 17:15
- To change this template, choose Tools | Template Manager
- and open the template in the editor.
*/
package olamundo;
/**
*
-
@author Administrador
*/
public class Main {/** Creates a new instance of Main */
public Main() {}
/**
-
@param args the command line arguments
*/
public static void main(String[] args) {System.Out.println (‘Ola Mundo!’);
// TODO code application logic here
}
-
}