tlang-runtime-compiler/TLang.VM/Chunk.cs

11 lines
200 B
C#
Raw Normal View History

2023-07-29 00:11:09 +00:00
using System.Collections.Generic;
namespace TLang.VM
{
public class Chunk
{
public List<string> Arguments {get;set;}=new List<string>();
public byte[] Code {get;set;}
}
}