Enjoy!! (^_^)/
CSV
Name,Price,Color
| module Program | |
| (* | |
| fsharp console app sample with System.CommandLine | |
| require: dotnet add package system.commandline | |
| e.g. | |
| dotnet run -- --opdir ./hello --opfile ./hello/world.csv --opint 2021 |
| if [ -z "$1" ] ; then | |
| echo '' | |
| echo ' fio is FSharp In Out.' | |
| echo '' | |
| echo ' -e Eval script.' | |
| echo ' -r Read script path.' | |
| echo '' | |
| exit |
| let inline prettyPrint (row : int ) (space : string) (lst: 'a list) = | |
| let swapRowColumn lst = | |
| lst | |
| |> List.collect List.indexed | |
| |> List.groupBy fst | |
| |> List.map snd | |
| |> List.map (List.map snd) | |
| let sjis = System.Text.Encoding.GetEncoding "Shift_JIS" |
Working Directory : ファイルとかフォルダとか
Staging Area : repositoryにcommitする際の指示書みたいなもの
Repository : ファイル・フォルダの記録
https://git-scm.com/book/en/v2/Getting-Started-Git-Basics#The-Three-States
| #if INTERACTIVE | |
| #r "../Oanda.dll" | |
| #I "../packages/FSharp.Data/lib/net40/" | |
| #r "FSharp.Data.DesignTime.dll" | |
| #r "FSharp.Data.dll" | |
| #endif | |
| open System | |
| open System.IO | |
| open System.Reflection |