1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-03 23:05:59 +02:00
Beef/IDEHelper/Tests/src/Loops.bf
2020-12-06 09:06:14 -08:00

16 lines
133 B
Beef

using System;
namespace Tests
{
class Loops
{
[Test]
public static void TestBasics()
{
while (false)
{
}
}
}
}