fork download
  1. using System;
  2.  
  3.  
  4. public class Program
  5. {
  6. public static void Main(string[] args)
  7. {
  8. //Your code goes here
  9. Console.WriteLine("Hello, world!");
  10. Console.WriteLine($"{nameof(Audit.Name)} is 'Mark Brohter'");
  11. }
  12. }
  13.  
  14. public class Audit{
  15. public string Name {get; set;}
  16. }
  17.  
Success #stdin #stdout 0.01s 131648KB
stdin
Standard input is empty
stdout
Hello, world!
Name is 'Mark Brohter'