import syslog fn main() { mut log := syslog.open(ident: 'helloworld') defer { log.close() } log.send(.info, 'hello from V!') log.send(.err, 'error message from V!') eprintln('On Linux run `journalctl -t helloworld` to see the result.') }