StrawberryBF/src/PlatformLayer/Batcher.bf

17 lines
296 B
Brainfuck
Raw Normal View History

2020-08-09 16:29:46 +08:00
using System.Collections.Generic;
namespace Strawberry
{
public class Batcher
{
List<Batch> batchStack = new System.Collections.List<Batch>() ~ DeleteContainerAndItems!(_);
Batch top => batchStack.Count > 0 ? batchStack[batchStack.Count - 1] : null;
private class Batch
{
}
}
}