1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 15:46:05 +02:00
Beef/IDE/Tests/Test1/src/Assembly.bf

26 lines
330 B
Beef
Raw Normal View History

2019-08-23 11:56:54 -07:00
#pragma warning disable 168
namespace IDETest
{
class Assembly
{
public static int IncVal(ref int val)
{
val++;
return val;
}
public static void Test1()
{
int a = 0;
int d = IncVal(ref a) + IncVal(ref a) + IncVal(ref a);
}
public static void Test()
{
//AssemblyTester_Test
Test1();
}
}
}