1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-28 20:46:00 +02:00
Beef/IDE/mintest/src/main3.bf

29 lines
313 B
Beef
Raw Normal View History

//using Squarf;
//GORB
#pragma warning disable 168
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Threading;
enum EnumA
{
Abo = 1,
Boop = _*2,
Croop = _*2,
}
2019-10-09 16:20:09 -07:00
struct Blurg
2019-09-29 07:44:39 -07:00
{
2019-12-13 14:25:15 -08:00
public static int32 Hey()
2019-12-11 16:56:09 -08:00
{
int a = 123;
int* aPtr = &a;
2019-12-13 14:25:15 -08:00
return (int32)123;
2019-12-11 16:56:09 -08:00
}
}