Update to version 1.0.0 #3

Merged
Booklordofthedings merged 23 commits from dev into main 2024-08-26 13:33:38 +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;
}