Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonytonyjan/zhrb
Program Ruby in Chinese
https://github.com/tonytonyjan/zhrb
Last synced: about 1 month ago
JSON representation
Program Ruby in Chinese
- Host: GitHub
- URL: https://github.com/tonytonyjan/zhrb
- Owner: tonytonyjan
- Created: 2013-12-27T20:55:20.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-27T21:05:12.000Z (almost 11 years ago)
- Last Synced: 2024-04-09T21:30:17.218Z (9 months ago)
- Language: Ruby
- Size: 89.8 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 紅寶石
「紅寶石」是一個用於教學的中文程式語言。
## 安裝
```
gem install zhrb
```## 使用
```
$ ls
dog.zhrb hello_world.zhrb
$ cat hello_world.zhrb
印出 "哈囉,世界"
$ zhrb hello_world.zhrb
哈囉,世界
$ cat dog.zhrb
類 狗
定義 初始化 名字
@名字 = 名字
結束
定義 吃 食物
印出 "狗狗#{@名字},吃掉了#{食物}"
結束
結束史努比 = 狗.生成 "史努比"
史努比.吃 "查理布朗"$ zhrb dog.zhrb
狗狗史努比,吃掉了查理布朗
```