Up
1 import std.stdio; 2 3 double f(double x) { 4 return x * 2.0; 5 } 6 7 void main() { 8 auto four = f(2.0); 9 writefln(four); 10 }