Created
September 22, 2011 23:17
-
-
Save Whiteknight/1236313 to your computer and use it in GitHub Desktop.
Winxed Error for NotFound
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# THIS IS A GENERATED FILE! DO NOT EDIT! | |
# Begin generated code | |
.namespace [ ] | |
.sub 'main' :main | |
# Body | |
# { | |
.annotate 'file', 'test.winxed' | |
.annotate 'line', 3 | |
# foo: $S1 | |
set $S1, "" | |
.annotate 'line', 4 | |
# value: $S2 | |
set $S2, "" | |
.annotate 'line', 5 | |
# var r: $P1 | |
root_new $P1, ['parrot';'Hash'] | |
get_hll_global $P2, 'foo' | |
$P1[$P2] = $S2 | |
# } | |
.annotate 'line', 6 | |
.end # main | |
# End generated code |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function main[main]() | |
{ | |
string foo = ""; | |
string value = ""; | |
var r = { foo : value }; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment