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