我在 Oz 中找到了一个模块的信息,其中包含对列表进行操作的过程:https ://mozart.github.io/mozart-v1/doc-1.4.0/base/list.html
但我一直在以不同的方式尝试不同的程序,例如:
declare
proc {Length L}
I
in
{List.length +L ?I}
{Browse I}
end
declare
L=[1 2 3 4]
in
{Length L}
我得到的是一个类型错误,我希望你能帮助我知道为什么,我是使用 OZ 的新手