1
0

Add RESULT system variable

This commit is contained in:
otya128
2016-12-05 21:28:25 +09:00
parent 3729337e3f
commit 9242275aec
4 changed files with 44 additions and 5 deletions

View File

@@ -108,3 +108,11 @@ class FreeMem : SystemVariable
return Value(8327164);
}
}
class Result : SystemVariable
{
@property
override Value value()
{
return Value(vm.petitcomputer.project.result);
}
}