如何在没有 for 循环的情况下在 Go 中实现与以下 python 代码相同的功能?
def test(i):
if i == 0:
return None
else:
print(i)
return test(i - 1)
慕田峪9158850
撒科打诨
相关分类