Sha256: bef7d44481e1befdb383d5cef1a4bb09cf763e94481676f1f33932ab277758da
Contents?: true
Size: 368 Bytes
Versions: 12
Compression:
Stored size: 368 Bytes
Contents
using System; namespace Cucumber.Demo { public class Hello { public string Greet(string who, string from) { return "Hi, " + who + ". I'm " + from; } public bool IsFriend(string who) { return true; } public string GetPhoneNumber(string who) { return "99999"; //throw new Exception("My phone is secret!"); } } }
Version data entries
12 entries across 12 versions & 4 rubygems