mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Initial checkin
This commit is contained in:
parent
c74712dad9
commit
078564ac9e
3242 changed files with 1616395 additions and 0 deletions
39
IDEHelper/Tests/LibA/src/LibA0.bf
Normal file
39
IDEHelper/Tests/LibA/src/LibA0.bf
Normal file
|
@ -0,0 +1,39 @@
|
|||
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];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue