1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 07:14:09 +02:00
Beef/IDE/Tests/Test1/src/Break.bf
2019-11-29 09:22:18 -08:00

28 lines
309 B
Beef

#pragma warning disable 168
using System.Threading;
namespace IDETest
{
class Break
{
public static void Infinite()
{
while (true)
{
//Thread.Sleep(100);
}
}
public static void Test()
{
//Test_Start
int a = 0;
a++;
a++;
a++;
if (a == -1)
Infinite();
}
}
}