Skip to content

Instantly share code, notes, and snippets.

@run-dlang
Created September 29, 2023 06:30
Show Gist options
  • Save run-dlang/b6bd75b6054ea0906d0404e0ab19fb2c to your computer and use it in GitHub Desktop.
Save run-dlang/b6bd75b6054ea0906d0404e0ab19fb2c to your computer and use it in GitHub Desktop.
Code shared from run.dlang.io.
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