Shahid4

Untitled

Jun 24th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.14 KB | None | 0 0
  1. import std.stdio;
  2. void main() {
  3.     auto a = [1,2,3];
  4.     writeln( a[1..1] == null );
  5.     writeln( a[1..1] is null );
  6. }
  7. //---
  8. $ ./a.out
  9. true
  10. false
Advertisement
Add Comment
Please, Sign In to add comment