ChangeLog を書く際によく使われる英語をまとめました。
ほとんど引用です。
| # -*- coding : utf-8 -*- | |
| font = "Migu 2M Regular" | |
| Shoes.app(title: "BCDice") do | |
| para("設定", font: font) | |
| list_box :items => ['default'] | |
| button "この設定で保存" #{ } | |
| button "この設定を削除" #{ } | |
| para("\nサーバー名", font: font) | |
| server = edit_line | |
| para("\nポート番号", font: font) |
| #!/usr/bin/env ruby | |
| # -*- coding: utf-8 -*- | |
| # ++ TMCIT Exam Archives Downloader ++ | |
| # ++ I don't like regular expression. ++ | |
| # !! At your own risk !! | |
| # License | |
| # Copyright (c) 2012 atpons | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of |
| =begin | |
| Class Factorial | |
| # Fun: メンバ函数/メソッド定義? | |
| Fun x | |
| (* ! a b : 変数名 a に 値b が束縛される? | |
| n 1 : 内部的にはリストの内部に連結されると想像 | |
| + n 1 : + オブジェクトはレシーバのリストをパーズして加算した値を返す? | |
| *) | |
| ! n + n 1 | |
| Print n |