using System.Collections.Generic;
namespace TLang.VM
{
public class Chunk
public List<string> Arguments {get;set;}=new List<string>();
public byte[] Code {get;set;}
}