Created
March 25, 2015 05:23
-
-
Save hafuu/fc7eb5f2f064571d7977 to your computer and use it in GitHub Desktop.
yuitoのアレ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let beginPage = fsi.CommandLineArgs.[1] |> int | |
| let endPage = fsi.CommandLineArgs.[2] |> int | |
| let actualBeginPage = function | |
| | 1 -> 1 | |
| | n -> (n - 2) / 4 * 2 + 3 | |
| let actualEndPage n = actualBeginPage n + 1 | |
| printfn "%d-%d" (actualBeginPage beginPage) (actualEndPage endPage) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment