我正在阅读我在网上找到的关于如何将 AI 添加到井字游戏中的章节。在它们之间的某个地方有一些伪代码片段,如下所示:
to checkwin :candidate :mysquares :free ;; old program
if memberp first :candidate :free ~
[output check1 butfirst :candidate :mysquares]
if memberp last :candidate :free ~
[output check1 butlast :candidate :mysquares]
if memberp first butfirst :candidate :free ~
[output check1 list first :candidate last :candidate :mysquares]
output "false
end
这是什么语言 ?
它试图传达什么?