fork download
  1. class Compare{
  2. public static void main(String[] args){
  3. var a: integer;
  4. a=10;
  5.  
  6. System.out.println("The largest integer is:",+a);
  7.  
  8.  
  9. }
  10. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.scala:2: error: identifier expected but ']' found.
public static void main(String[] args){
                               ^
Main.scala:10: error: ']' expected but '}' found.
}
^
two errors found
stdout
Standard output is empty