1
0

フォント読み込みを実�

This commit is contained in:
otya128
2015-07-07 22:21:01 +09:00
parent 5cefdc26b0
commit 99bfe00121
2 changed files with 190 additions and 6 deletions

View File

@@ -120,8 +120,15 @@ END
{
writeln(t);
}
auto pc = new PetitComputer();
pc.run();
readln();
try
{
auto pc = new PetitComputer();
pc.run();
}
catch(Throwable t)
{
writeln(std.windows.charset.toMBSz(t.to!string).to!string);
readln();
}
return 0;
}