我正在尝试将这个Python程序翻译成Scheme:
def test(x):
if x > 1:
print('foo')
if x > 10:
return
if x == 4:
print('bar')
test(1)
test(2) # prints 'foo'
test(4) # prints 'foo\nbar'
test(11) # prints 'foo'
Run Code Online (Sandbox Code Playgroud)
return方案中的声明是什么?