mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-03 23:05:59 +02:00
16 lines
133 B
Beef
16 lines
133 B
Beef
using System;
|
|
|
|
namespace Tests
|
|
{
|
|
class Loops
|
|
{
|
|
[Test]
|
|
public static void TestBasics()
|
|
{
|
|
while (false)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|