tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
9
Task/Read-entire-file/D/read-entire-file.d
Normal file
9
Task/Read-entire-file/D/read-entire-file.d
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import std.file: read, readText;
|
||||
|
||||
void main() {
|
||||
// To read a whole file into a dynamic array of unsigned bytes:
|
||||
auto data = cast(ubyte[])read("unixdict.txt");
|
||||
|
||||
// To read a whole file into a validated UTF-8 string:
|
||||
string txt = readText("unixdict.txt");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue