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
33
4- ## 特長
4+ ## Features
55
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
1010
11- ## サンプルコード
12- これはStackプログラミング言語でFizzBuzz問題を解くサンプルコードです
11+ ## Sample code
12+ This is a sample code to solve FizzBuzz problem in Stack programming language
1313``` stack
1414(
15- (i) var
16- (Fizz) ()
17- i 3 mod 0 equal if
15+ (i) var
16+ (Fizz) ()
17+ i 3 mod 0 equal if
1818) (fizz) var
1919
2020(
21- (i) var
22- (Buzz) ()
23- i 5 mod 0 equal if
21+ (i) var
22+ (Buzz) ()
23+ i 5 mod 0 equal if
2424) (buzz) var
2525
26261 101 1 range (i) (
2727
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
3131
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
3737) for
38- ```
38+ ````
3939
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.
4242
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