Advertisement
Guest User

Untitled

a guest
Aug 10th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.86 KB | None | 0 0
  1. import java.io.*;
  2.  
  3. class ronova {
  4.     static String VERSION = "2.0.3";
  5.     static String SERVER = "irc.rizon.net";
  6.     static int PORT = 6667;
  7.     static int TIMEOUT = 240;
  8.     static String NICK = "Ronova";
  9.     static String USER = "gesichtslos *  | Anonymous";
  10.     static String PASS = "";
  11.     static String HOME = "#ronova";
  12.     static String OWNER = "gesichtsl";
  13.    
  14.     public static void main(String args[]) {
  15.         // Determine host operating system and clear the terminal.
  16.         String hostOperatingSystem = System.getProperty("os.name");
  17.         if(hostOperatingSystem.equals("Linux")) {
  18.             // Code to clear UNIX screen
  19.         } else {
  20.             // Code to clear WIN screen
  21.         }
  22.        
  23.         System.out.println("Ronova v" + VERSION);
  24.         System.out.println("Copyright 2011 ges. All rights reserved.\n");
  25.        
  26.     }
  27.    
  28.     public void output(String data_to_output) {
  29.         System.out.println("[CORE]: " + data_to_output);
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement