This website works better with JavaScript
Home
Explore
Help
Sign In
221V
/
dlang_book
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
ce34e74f04
Branches
Tags
master
dlang_book
/
book
/
02-основные-типы-данных-выражения
/
src
/
chapter-2-3-8
/
app.d
app.d
77 B
History
Raw
1
2
3
4
5
6
7
import std.stdio;
void main()
{
auto a = 2 ^^ 3;
writeln(a); // 8
}