1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 06:44:10 +02:00
Beef/IDEHelper/Tests/src/Program.bf

20 lines
201 B
Beef
Raw Normal View History

2020-10-24 15:50:06 -07:00
namespace Tests
{
2021-05-26 20:23:12 +02:00
typealias DDDDAttribute = System.InlineAttribute;
2020-10-24 15:50:06 -07:00
class Program
{
2021-05-26 20:23:12 +02:00
2020-10-24 15:50:06 -07:00
public static void Main()
{
2021-05-26 20:23:12 +02:00
A();
}
2020-10-24 15:50:06 -07:00
2021-05-26 20:23:12 +02:00
[DDDD]
public static void A()
{
int i = 1 + 2;
2020-10-24 15:50:06 -07:00
}
}
}