includes/std: Added support for writing patterns to files

This commit is contained in:
Nik
2023-05-02 20:38:21 +02:00
committed by GitHub
parent e21063d58b
commit 2f39a62d85

View File

@@ -59,9 +59,9 @@ namespace std::file {
/**
Writes the content of a string into a file
@param handle The file handle to write to
@param data String to write to the file
@param data String or Pattern to write to the file
*/
fn write(Handle handle, str data) {
fn write(Handle handle, auto data) {
builtin::std::file::write(handle, data);
};