/Users/lyon/j4p/src/utils/Print.java
|
1 /*
2 * Created by IntelliJ IDEA.
3 * User: lyon
4 * Date: Jan 31, 2003
5 * Time: 12:38:21 PM
6 * To change template for new class use
7 * Code Style | Class Templates options (Tools | IDE Options).
8 */
9 package utils;
10
11
12
13 public class Print {
14 public static void print(String s) {
15 System.out.print(s);
16 }
17 public static void print(Object o[]){
18 for (int i=0; i < o.length;i++)
19 System.out.println(o[i]);
20 }
21
22 public static void println(String s) {
23 System.out.println(s);
24 }
25
26 }
27