You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
408 B

  1. using System;
  2. using static System.Console;
  3. using System.Collections.Generic;
  4. using Xunit;
  5. namespace AdventOfCode {
  6. public class Program {
  7. static string Hello() {
  8. return "ahoy, world";
  9. }
  10. [Fact]
  11. static void HelloTest() {
  12. Assert.Equal("ahoy, world", Hello());
  13. }
  14. static void Main(string[] args) {
  15. Console.WriteLine(Hello());
  16. }
  17. }
  18. }