18 lines
351 B
Plaintext
18 lines
351 B
Plaintext
package slangc.streams;
|
|
|
|
public class LogWriter {
|
|
#common:print
|
|
public void part(String s) {
|
|
throw new Error("TODO:part");
|
|
}
|
|
|
|
#common:println
|
|
public void line() {
|
|
throw new Error("TODO:line");
|
|
}
|
|
|
|
#common:println
|
|
public void line(String s) {
|
|
throw new Error("TODO:line");
|
|
}
|
|
} |