Last active
February 17, 2024 13:49
-
-
Save sheepla/b71861efa5e8a28bc48cc4cb6df9eeee to your computer and use it in GitHub Desktop.
オフチョベットしたテフをマブガットしてリットにする.fsx
This file contains 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 テフ = "テフ" | |
let アブシィト = "アブシィト" | |
let ミタッド = "ミタッド" | |
let オフチョベット = fun 食べ物 -> $"オフチョベットした{食べ物}" | |
let マブガット = fun 食べ物 -> $"{食べ物}をマブガットして" | |
let 発酵 = fun 食べ物 -> $"発酵した{食べ物}" | |
let 混ぜる = fun あれ これ -> $"{あれ}に{これ}を加えて混ぜたもの" | |
let 焼く = fun 器具 食べ物 -> $"あとは{食べ物}を{器具}で焼くだけよ" | |
let リット = | |
オフチョベット <| テフ |> マブガット | |
let インジェラ = | |
((発酵<|"リット"), アブシィト) ||> 混ぜる |> 焼く ミタッド | |
printfn "インジェラの作り方を紹介するわね。" | |
リット |> printfn "%sリットを作るの。" | |
printfn "%s。" インジェラ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
環境
.NET Core v7.0.113 F# (Linux x64)
実行する
dotnet fsi ./オフチョベットしたテフをマブガットしてリットにする.fsx
出力