Created
June 5, 2018 11:42
-
-
Save JaykeOps/a8eb49337e069d03e6143ddfaa7e929e to your computer and use it in GitHub Desktop.
Exercise 4 - FunkNite
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
open System.IO | |
let writeTransactionToFile transaction = File.AppendAllText("statement.txt", "some string") | |
let writeTransactionToConsole transaction = printfn "%s" "Something" | |
//Forstsätt där vi avslutade uppgift 3 | |
//1. Bygg ut "transaction" funktionerna så att dom har loggningsfunktionalitet | |
// - Försök experimentera med Higher-order functions, currying och partial application. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment