1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 15:24:10 +02:00
Beef/IDE/Tests/Test1/src/Break.bf

29 lines
309 B
Beef
Raw Normal View History

2019-11-29 09:22:18 -08:00
#pragma warning disable 168
2019-08-23 11:56:54 -07:00
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();
}
}
}