Skip to content

Instantly share code, notes, and snippets.

@sheepla
Last active May 25, 2024 00:13
Show Gist options
  • Save sheepla/c0d5420ca58fa2da01ccd651c40cb36f to your computer and use it in GitHub Desktop.
Save sheepla/c0d5420ca58fa2da01ccd651c40cb36f to your computer and use it in GitHub Desktop.
// Usage:
// dotnet fsi U149.fsx
open System
[1..3]
|> List.map (fun n -> (n * n).ToString())
|> List.fold (+) ""
|> printfn "アイドルマスターU%s" // => "アイドルマスターU149"
@sheepla
Copy link
Author

sheepla commented Jan 4, 2024

U を書き忘れてしまった

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment