RosettaCodeData/Task/Delegates/Zkl/delegates-3.zkl

7 lines
226 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class [static] Logger{ // Only one logging resource
var [mixin=File] dst; // File like semantics, eg Data, Pipe
dst = File.DevNull;
// initially, the logger does nothing
fcn log(msg){dst.writeln(vm.pasteArgs())}
}