mirror of
https://github.com/MaddyThorson/StrawberryBF.git
synced 2025-04-05 00:46:05 +08:00
17 lines
296 B
Brainfuck
17 lines
296 B
Brainfuck
|
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
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|