add continous function execution and table get
This commit is contained in:
parent
1addc28463
commit
291d5724f2
4 changed files with 86 additions and 15 deletions
|
@ -10,7 +10,7 @@ fn get_string_from_vmmem(mem: VMMemory) -> String {
|
|||
VMMemory::Boolean(b) => out.push_str(if b.value { "true" } else { "false" }),
|
||||
VMMemory::Null(_) => out.push_str("null"),
|
||||
VMMemory::Table(tbl) => {
|
||||
out.push_str("{ ");
|
||||
out.push_str("{");
|
||||
for val in &tbl.values {
|
||||
out.push_str(&get_string_from_vmmem(val.key.clone()));
|
||||
out.push_str("=");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue