Skip to content

Instantly share code, notes, and snippets.

@rbtnn
Created July 11, 2014 11:24
Show Gist options
  • Save rbtnn/c967fbb3d0e52bbeab15 to your computer and use it in GitHub Desktop.
Save rbtnn/c967fbb3d0e52bbeab15 to your computer and use it in GitHub Desktop.
using System;
using System.Threading.Tasks;
namespace test01
{
class Program
{
static void Main(string[] args)
{
string[] mess = { "ほげ", "もげ", "ふが", "ぷげ", "うげ", "うへ" };
while (true)
{
foreach(string m in mess){
Console.Clear();
Console.WriteLine(m);
System.Threading.Thread.Sleep(1000);
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment