Created
September 29, 2023 06:30
-
-
Save run-dlang/b6bd75b6054ea0906d0404e0ab19fb2c to your computer and use it in GitHub Desktop.
Code shared from run.dlang.io.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import std.stdio; | |
void main() { | |
ubyte a = 200; | |
ulong b = 50000000000UL; | |
uint c = 10000; | |
long d = -100; | |
writeln("Значение переменной a (ubyte): ", a); | |
writeln("Значение переменной b (ulong): ", b); | |
writeln("Значение переменной c (uint): ", c); | |
writeln("Значение переменной d (long): ", d); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment