Rewrite #2

Merged
Booklordofthedings merged 22 commits from rewrite into dev 2024-08-26 13:32:44 +02:00
Showing only changes of commit cf0e2ddb93 - Show all commits

19
src/BofaValue.bf Normal file
View file

@ -0,0 +1,19 @@
namespace Bofa;
using System;
using System.Collections;
[Union]
struct BofaValue
{
StringView Line;
StringView Text;
float Number;
double BigNumber;
int32 Integer;
int64 BigInteger;
bool Boolean;
String Custom;
Bofa Object;
Bofa Array;
}