mirror of
https://github.com/dlang/phobos.git
synced 2025-04-26 21:22:20 +03:00
phobos 0.148
This commit is contained in:
parent
b029d8c452
commit
110cfd9da7
31 changed files with 1179 additions and 392 deletions
|
@ -47,6 +47,7 @@ import std.md5;
|
|||
import std.stdio;
|
||||
import std.conv;
|
||||
import std.boxer;
|
||||
import std.bitarray;
|
||||
|
||||
int main(char[][] args)
|
||||
{
|
||||
|
@ -103,6 +104,10 @@ printf("test2\n");
|
|||
|
||||
std.demangle.demangle("hello");
|
||||
|
||||
BitArray ba; // std.bitarray
|
||||
ba.length = 3;
|
||||
ba[0] = true;
|
||||
|
||||
printf("Success\n!");
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue