Created
July 11, 2014 11:24
-
-
Save rbtnn/c967fbb3d0e52bbeab15 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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