- Parrot 教程
- Parrot - 主页
- Parrot - 概述
- Parrot - 安装
- Parrot - 指令
- Parrot - 垃圾回收
- Parrot - 数据类型
- Parrot - 寄存器
- Parrot - 运算
- Parrot - 分支
- Parrot 示例
- Parrot - 示例
- Parrot 资源
- Parrot - 快速指南
- Parrot - 有用资源
Parrot - 安装
在开始之前,让我们下载一份 Parrot 的最新版本并将其安装在我们的机器上。
Parrot 下载链接提供在Parrot CVS Snapshot中。下载 Parrot 的最新版本并按照以下步骤进行安装
解压缩并释放下载的文件。
确保您的机器上已安装 Perl 5。
现在进行以下操作
% cd parrot % perl Configure.pl Parrot Configure Copyright (C) 2001 Yet Another Society Since you're running this script, you obviously have Perl 5 -- I'll be pulling some defaults from its configuration. ...
接下来,它将询问你一系列有关本地配置的问题;你几乎每次都可以按下 return/enter。
最后,它会要求你键入 - make test_prog,而 Parrot 将成功构建测试解释器。
现在,你应该运行一些测试;因此,键入 'make test',你应该会看到类似以下内容的读数
perl t/harness t/op/basic.....ok,1/2 skipped:label constants unimplemented in assembler t/op/string....ok, 1/4 skipped: I'm unable to write it! All tests successful, 2 subtests skipped. Files=2, Tests=6,......
当你读到这些内容时,可能还有更多测试,并且一些已跳过的测试可能不会跳过,但确保没有一个测试失败!
一旦安装了 Parrot 可执行文件,你就可以在 Parrot 'Examples' 部分中查看给出的各种类型的示例。你还可以查看 parrot 存储库中的 examples 目录。
广告