Sha256: d8e1dc3ac71f4a72b2f01148d786e49195c00fe512f6263991cac64b6bd31f3e
Contents?: true
Size: 727 Bytes
Versions: 28
Compression:
Stored size: 727 Bytes
Contents
using System; using System.Collections.Generic; using System.Linq; public enum Color { Red , Green , Ivory , Yellow , Blue } public enum Nationality { Englishman , Spaniard , Ukranian , Japanese , Norwegian } public enum Pet { Dog , Snails , Fox , Horse , Zebra } public enum Drink { Coffee , Tea , Milk , OrangeJuice , Water } public enum Smoke { OldGold , Kools , Chesterfields , LuckyStrike , Parliaments } public static class ZebraPuzzle { public static Nationality DrinksWater() { throw new NotImplementedException("You need to implement this function."); } public static Nationality OwnsZebra() { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
28 entries across 28 versions & 1 rubygems