File tree Expand file tree Collapse file tree 1 file changed +28
-28
lines changed Expand file tree Collapse file tree 1 file changed +28
-28
lines changed Original file line number Diff line number Diff line change 1
- # Stack プログラミング言語
2
- スタック指向型の強力なスクリプト言語
1
+ # Stack programming language
2
+ Powerful stack-oriented scripting language
3
3
4
- ## 特長
4
+ ## Features
5
5
6
- 1 . スタック指向型の効率的な実行モデル
7
- 2 . 明瞭で分かりやすいエレガントな構文
8
- 3 . 便利で拡張性の高い豊富なコマンド
9
- 4 . 強力かつ柔軟なデータ型の仕組み
6
+ 1 . Stack-oriented efficient execution model
7
+ 2 . Clear, easy-to-understand, and elegant syntax
8
+ 3 . A wealth of convenient and highly extensible commands
9
+ 4 . Powerful and flexible data type mechanism
10
10
11
- ## サンプルコード
12
- これはStackプログラミング言語でFizzBuzz問題を解くサンプルコードです
11
+ ## Sample code
12
+ This is a sample code to solve FizzBuzz problem in Stack programming language
13
13
``` stack
14
14
(
15
- (i) var
16
- (Fizz) ()
17
- i 3 mod 0 equal if
15
+ (i) var
16
+ (Fizz) ()
17
+ i 3 mod 0 equal if
18
18
) (fizz) var
19
19
20
20
(
21
- (i) var
22
- (Buzz) ()
23
- i 5 mod 0 equal if
21
+ (i) var
22
+ (Buzz) ()
23
+ i 5 mod 0 equal if
24
24
) (buzz) var
25
25
26
26
1 101 1 range (i) (
27
27
28
- () (msg) var
29
- msg i fizz eval concat (msg) var
30
- msg i buzz eval concat (msg) var
28
+ () (msg) var
29
+ msg i fizz eval concat (msg) var
30
+ msg i buzz eval concat (msg) var
31
31
32
- (
33
- i (msg) var
34
- ) ()
35
- msg () equal if
36
- msg print
32
+ (
33
+ i (msg) var
34
+ ) ()
35
+ msg () equal if
36
+ msg print
37
37
) for
38
- ```
38
+ ````
39
39
40
- ## 貢献
41
- どんな貢献も大歓迎です! 気軽にプルリクエストを開いてStackプログラミング言語をより良い物にしましょう。
40
+ ## contribution
41
+ Any contributions are welcome! Feel free to open a pull request and help make the Stack programming language even better.
42
42
43
- ## ライセンス
44
- Stackプログラミング言語はMITライセンスに基づく自由ソフトウェアです。誰もが利用や変更などが出来ます。 詳細については [ LICENSE] ( LICENSE ) ファイルをご覧ください
43
+ ## License
44
+ The Stack programming language is free software under the MIT license. Anyone can use and change it. See the [LICENSE](LICENSE) file for more details
You can’t perform that action at this time.
0 commit comments