翻译的Rebol Quick Start http://www.rebol.com/docs/quick-start.html
1.2 样例
- REBOL [
- Title: "Digital Clock"
- Version: 1.3.3
- Author: "Carl Sassenrath"
- Purpose: {A simple digital clock.}
- ]
- f: layout [
- origin 0
- b: banner 140x32 rate 1
- effect [gradient 0x1 0.0.150 0.0.50]
- feel [engage: func [f a e]
- [set-face b now/time]]
- ]
- view f
在命令行里输入rebview sample.r,就能够打开一个时钟。
如今来看上面的代码,非常容易能够看到上面的东东分3个部分,REBOL部分、f部分和view f部分。
1.2.1 header
在rebol中REBOL部分被称作头部header,这部分是强制的,就是说没有这部分,程序就无法执行;这个规定非常奇怪,假设不过为了版权问题的话,实在是没什么道理的。
header部分一般能够包括script name,author,date,version,file name,addtional information而言,头部写法为:
REBOL [block]
一个典型的header看起来可能像这个样子:
- REBOL [
- Title: "Full REBOL Header Example"
- Date: 8-Sep-1999
- Name: 'Full-Header ; For window title bar
- Version: 1.1.1
- File: %headfull.r
- Home: http://www.rebol.com/rebex/
- Author: "Carl Sassenrath"
- Owner: "REBOL Headquarters"
- Rights: "Copyright (C) Carl Sassenrath 1999"
- Needs: [2.0 ODBC]
- Tabs: 4
- Purpose: {
- The purpose or general reason for the program
- should go here.
- }
- Note: {
- An important comment or notes about the program
- can go here.
- }
- History: [
- 0.1.0 [5-Sep-1999 "Created this example" "Carl"]
- 0.1.1 [8-Sep-1999 {Moved the header up, changed
- comment on extending the header, added
- advanced user comment.} "Carl"]
- ]
- Language: 'English
- ]
1.2.2 body部分
body部分在上面的样例中主要唯独一个变量f
f: layout[],这个语句创建了一个窗体
终于view f的时候打开该窗体
甚至你能够在console里输入
f: layout[]
view f
相同能够看到这个窗体
1.3 IDE
写IDE似乎蛮吓人的啊,情况没那么吓人,作者给我们推荐了一个内置了语法高亮的编辑器Crimson Editor,下载地址是http://www.crimsoneditor.com/,经过简单的配置就能够通过Ctrl+E执行rebol程序了。
1.3.1 色彩配置
Tools->Preference->Colors
background:黑色
activeline:黑色
normal text:白色
constant:绿色
string:绿色
commet:白色
variable:蓝色
Keywords:红色
1.3.2 编辑器配置
Tools->Preference->User Tools
Menu Text:Rebol
Command:F:/rebview/rebview.exe(依照你自己的相应的调整)
Argument:-s $(FilePath)
Init Dir:$(FileDir)
Hot Key:Ctrol+E
经过測试,OK了的。
2 编程入门
2.1 Hello World
- REBOL []
- alert "Hello World!"
样例非常easy,弹出一个对话框,内容当然就是Hello World了。
注意:在Rebol中,断行是不重要的,但空格是非常重要的;这大约是Rebol的设计理想之中的一个,Using Rebol should be the same as using English.英语似乎每一个单词周围都是有空格的。
2.2 第二个程序
- REBOL []
- birthday: 15-Dec-1984
- alert reform ["You are " now - birthday "days old"]
的确挺象英语的,嘿嘿。
2.3 第三个程序
- REBOL []
- view layout [
- backcolor gold
- h2 "Web Bookmarks"
- style btn btn 130
- btn "REBOL.com" [browse http://www.rebol.com]
- btn "REBOL.net" [browse http://www.rebol.net]
- btn "REBOL.org" [browse http://www.rebol.org]
- btn "google" [browse http://www.google.cn]
- ]
非常有趣,有点CSS style,挺不错的,非常有点吸引人。
这个程序的layout里面每行都有4个空格,还好这不是强制的,不过一种风格。