CDE
This commit is contained in:
parent
518da4a923
commit
764da6cbbb
6144 changed files with 83610 additions and 11 deletions
1
Task/Conditional-structures/D/conditional-structures-1.d
Normal file
1
Task/Conditional-structures/D/conditional-structures-1.d
Normal file
|
|
@ -0,0 +1 @@
|
|||
const i = 5; static if (i == 7) { ... } else { ... }
|
||||
9
Task/Conditional-structures/D/conditional-structures-2.d
Normal file
9
Task/Conditional-structures/D/conditional-structures-2.d
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
auto i = 5;
|
||||
// is(T: U) tests if T is implicitly castable to U.
|
||||
// typeof(var) is the type of the variable.
|
||||
// also: is(T==U) checks if T is U.
|
||||
static if (is(typeof(i) : int)) {
|
||||
...
|
||||
} else {
|
||||
...
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue