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

23 lines
271 B
Beef
Raw Normal View History

#pragma warning disable 168
using System;
using System.Diagnostics;
using System.Threading;
using System.Collections;
struct Blurg
2019-09-29 07:44:39 -07:00
{
2020-05-15 15:09:00 -07:00
public static void Hey()
{
2020-05-15 15:09:00 -07:00
String str = new String();
delete str;
2020-05-15 15:09:00 -07:00
//Internal.Malloc(123);
Internal.StdMalloc(123);
}
2020-04-10 08:58:12 -07:00
}