0
0

🎉 mov command

This commit is contained in:
DrMaxNix 2022-10-01 19:42:00 +02:00
parent ddf7163f6d
commit 7d7f1424dc

View File

@ -14,8 +14,13 @@ Juicescript.command_define({
execute: function(runner){
// ASSIGN VALUE //
// get value to assign
// resolve first argument to absolute variable object
let variable = runner.argument_variable(1);
// get value to assign from second argument
let value = runner.argument_value(2);
/**/runner.debug(value);
// assign value to variable
runner.variable_set(variable, value);
}
});