【发布时间】:2012-10-03 09:29:14
【问题描述】:
如果使用http://selflanguage.org/上的文件在Ubuntu上安装Self,那么我们可以使用
$ Self
Self Virtual Machine Version 4.1.13, Sat 20 Feb 10 22:39:48 Linux
Copyright 1989-2003: The Self Group (type _Credits for credits)
for I386: LogVMMessages = true
for I386: PrintScriptName = true
for I386: Inline = true
for I386: SICDeferUncommonBranches = false (not implemented)
for I386: SICReplaceOnStack = false (not implemented)
for I386: SaveOutgoingArgumentsOfPatchedFrames = true
但是,一些简单的行不能运行:
VM# 'Hello, World!' print.
A lookup error happened while sending the message
print
to
'Hello, World!'.
Subsequently, the lookup error message
undefinedSelector:Receiver:Type:Delegatee:MethodHolder:Arguments:
was sent to
<0>,
and was also not understood, causing the process to be aborted by the Self VM.
#0 (<error>:1): print = ( | self* = 'Hello, World!'. delegatee = nil. selector = 'print'. |
"undefined selector error;
this method was automatically generated by the VM."
)
#1 (<stdin>:1): <top level expr> = ( | self* = lobby. | 'Hello, World!' print )
或者其他人来试试插槽:
VM# _AddSlots: (| vehicle <- (|parent* = traits clonable|) |).
A lookup error happened while sending the message
traits
to
lobby.
Subsequently, the lookup error message
undefinedSelector:Receiver:Type:Delegatee:MethodHolder:Arguments:
was sent to
<0>,
and was also not understood, causing the process to be aborted by the Self VM.
#0 (<error>:1): traits = ( | self* = lobby. delegatee = nil. selector = 'traits'. |
"undefined selector error;
this method was automatically generated by the VM."
)
#1 (<stdin>:1): <top level expr> = ( | self* = lobby. | traits clonable )
^
Self VM error: couldn't construct object literal on line 1, character 30
^
Self VM error: couldn't construct object literal on line 1, character 16
VM#
有人知道如何让它工作吗?
【问题讨论】:
标签: self selflanguage