Add placeholder println function to coral library

This commit is contained in:
kayomn 2023-03-02 23:56:06 +00:00
parent 7878c52496
commit 398e28d328

View File

@ -242,4 +242,8 @@ export namespace coral {
return output.write({buffer, buffer_count});
}
template<typename... arguments> expected<usize, io_error> println(writer & output, arguments... print_arguments) {
// TODO: Implement.
}
}