ChangeLog を書く際によく使われる英語をまとめました。
ほとんど引用です。
| import math._ | |
| 1L // Long型の 1 | |
| 1:Long // Long型の 1 | |
| 127:Byte // Byte型の 127 | |
| 32767:Short // Short型の 32767 | |
| (1+2).toLong // Long型への変換 | |
| (2+3) toLong // Long型への変換 |
| def index(id:String) = Action { | |
| getFirstData(id) | |
| } | |
| private def getFirstData(id:String) = { | |
| Cache.get(id) match { | |
| case Some(id2) => getSecondData(id2) | |
| case None => NotFound | |
| } | |
| } | |
| private def getSecondData(id2:String) = { |
| // Written in the D programming language. | |
| /** | |
| * High peformance downloader | |
| * | |
| * Implemented according to <a href="http://yusukebe.com/archives/20120229/072808.html">this implementation</a>. | |
| * | |
| * Example: | |
| * ----- | |
| * dmd -L-lcurl -run downloader.d |