Skip to content

Instantly share code, notes, and snippets.

@jz5

jz5/haiku.cs Secret

Created February 25, 2015 19:27
Show Gist options
  • Select an option

  • Save jz5/5c35ec19bba2a5cd66a7 to your computer and use it in GitHub Desktop.

Select an option

Save jz5/5c35ec19bba2a5cd66a7 to your computer and use it in GitHub Desktop.
string[,] s = { { "古池や", "柿くえば" },
{ "蛙飛びこむ", "鐘がなるなり" },
{ "水の音", "法隆寺" } };
var r = new Random();
for (var i = 0; i < 3; i++)
{
Console.WriteLine(s[i, r.Next(100) % 2]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment