Puzzle: ¿Qué hace este programa?
¿Qué hace el siguiente programa (si es que le parece válido, claro)?
using System;
static class Program
{
static int mult(int n, int m = 2) // ???
{
return n * m;
}
static void Main(string[] args)
{
Console.WriteLine(format: "{0:D05}", arg0: mult(n: 950)); // ???
Console.ReadLine();
}
}
SUGERENCIA: Reclínese confortablemente en su máquina del tiempo y avance hasta 2010.
29/09/2008: La respuesta AQUI.