Source code: mlsub/typing/lowlevel/Debug.java
1 /**************************************************************************/
2 /* B O S S A */
3 /* A simple imperative object-oriented research language */
4 /* (c) Daniel Bonniot 1999 */
5 /* */
6 /* This program is free software; you can redistribute it and/or modify */
7 /* it under the terms of the GNU General Public License as published by */
8 /* the Free Software Foundation; either version 2 of the License, or */
9 /* (at your option) any later version. */
10 /* */
11 /**************************************************************************/
12
13 // File : Debug.java
14 // Created : Wed May 31 10:45:16 2000 by Daniel Bonniot
15 //$Modified: Wed May 31 10:53:52 2000 by Daniel Bonniot $
16
17 package mlsub.typing.lowlevel;
18
19 /**
20 * Printing debug messages.
21 *
22 * @author Daniel Bonniot
23 */
24
25 public abstract class Debug
26 {
27 public static void println(String s)
28 {
29 System.err.println(s);
30 }
31 }