mirror of
https://github.com/dlang/phobos.git
synced 2025-04-26 05:00:35 +03:00
11 lines
237 B
D
Executable file
11 lines
237 B
D
Executable file
#!/usr/bin/env dub
|
|
/++dub.sdl:
|
|
dependency "phobos:checkedint" path=".."
|
|
+/
|
|
|
|
void main(string[] args)
|
|
{
|
|
import stdx.checkedint; // From latest Phobos
|
|
import std.stdio; // DMD's Phobos
|
|
writeln("checkedint: ", 2.checked + 3);
|
|
}
|