8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be4d292 commit 287a1dfCopy full SHA for 287a1df
vm/eval.go
@@ -766,7 +766,7 @@ func do_DELETE_ATTR(vm *Vm, namei int32) {
766
// Works as STORE_NAME, but stores the name as a global.
767
func do_STORE_GLOBAL(vm *Vm, namei int32) {
768
defer vm.CheckException()
769
- vm.NotImplemented("STORE_GLOBAL", namei)
+ vm.frame.Globals[vm.frame.Code.Names[namei]] = vm.POP()
770
}
771
772
// Works as DELETE_NAME, but deletes a global name.
0 commit comments