app.d 647 B

123456789101112131415161718192021
  1. import std.stdio;
  2. void main()
  3. {
  4. auto somePrimes = [ 2u, 3, 5, 7, 11, 13 ];
  5. writeln(somePrimes);
  6. auto someDoubles = [ 1.5, 3, 4.5 ];
  7. writeln(someDoubles);
  8. auto constants = [ 2.71, 3.14, 6.023e22 ];
  9. writeln(constants);
  10. constants[0] = 2.21953167;
  11. writeln(constants);
  12. auto salutations = [ "привет", "здравствуйте", "здорово" ];
  13. writeln(salutations);
  14. salutations[2] = "Да здравствует Цезарь";
  15. writeln(salutations);
  16. auto famousNamedConstants = [ "пи" : 3.14, "e" : 2.71, "константа дивана" : 2.22 ];
  17. writeln(famousNamedConstants);
  18. }