Transcript show: 'Derp'.
printSomething: 'Derpy'.
"The method above produced this error:"
"prog.st:3: expected expression"
printSomething: what
10 timesRepeat: [
Transcript show:what.
Transcript cr.
].
我现在正在尝试自学 Smalltalk,但我仍然没有弄清楚如何调用我编写的函数。我尝试使用语句调用printSomething
带有参数的函数,但没有调用该函数,而是产生了以下错误:.'Derpy'
printSomething: 'Derpy'.
prog.st:3: expected expression
我在这里做错了什么,在 Smalltalk 中调用带参数的函数的正确方法是什么?到目前为止,我读过的教程都没有回答我的问题,我仍然有点困惑。