fork download
  1. using System;
  2.  
  3. public class Program
  4. {
  5. public static void ExampleSub(string Test, System.Nullable<DateTime> fromDate = null)
  6. {
  7. fromDate = fromDate?? System.DateTime.Now;
  8. //An Even Greater sub!
  9. }
  10.  
  11. public static void Main(string[] args)
  12. {
  13. ExampleSub("Test");
  14. }
  15. }
  16.  
Success #stdin #stdout 0.01s 36840KB
stdin
Standard input is empty
stdout
Standard output is empty