Sha256: d109fa957d7b68628fdd9395f8d4f9767f74309a70e21de26736736fb2b6ce4e
Contents?: true
Size: 1.06 KB
Versions: 281
Compression:
Stored size: 1.06 KB
Contents
using System; public class SpaceAge { public SpaceAge(long seconds) { } public double OnEarth() { throw new NotImplementedException("You need to implement this function."); } public double OnMercury() { throw new NotImplementedException("You need to implement this function."); } public double OnVenus() { throw new NotImplementedException("You need to implement this function."); } public double OnMars() { throw new NotImplementedException("You need to implement this function."); } public double OnJupiter() { throw new NotImplementedException("You need to implement this function."); } public double OnSaturn() { throw new NotImplementedException("You need to implement this function."); } public double OnUranus() { throw new NotImplementedException("You need to implement this function."); } public double OnNeptune() { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
281 entries across 281 versions & 1 rubygems