fork download
  1. using System;
  2.  
  3. namespace HelloWorld
  4. {
  5. class Program
  6. {
  7.  
  8. static void Main(string[] args)
  9. {
  10.  
  11. Console.WriteLine("Hello,world!");
  12.  
  13. Console.WriteLine(DateTime.Now.DayOfYear.ToString());
  14. bool flag = DateTime.Now.DayOfYear % 13 == 0;
  15. if (flag)
  16. {
  17. Console.WriteLine("true");
  18. }
  19.  
  20.  
  21. }
  22. }
  23. }
Success #stdin #stdout 0.01s 131648KB
stdin
Standard input is empty
stdout
Hello,world!
268