1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 23:34:10 +02:00
Beef/IDEHelper/Tests/LibA/src/LibA0.bf

39 lines
442 B
Beef
Raw Normal View History

2019-08-23 11:56:54 -07:00
using System;
namespace LibA
{
class LibA0
{
}
}
class LibClassA
{
public int32 mA = GetVal(7, "LibA.LibClassA.mA");
public this()
{
PrintF("LibA.LibClassA()\n");
mA += 100;
}
public this(int32 a)
{
mA += a;
}
public static int32 GetVal(int32 val, String str)
{
PrintF("GetVal: %s\n", str.CStr());
return val;
}
public int GetVal2()
{
return 9;
}
}
class LibClassB
{
//public uint8* mA = append uint8[10];
}