Skip to content

Instantly share code, notes, and snippets.

View trendoid's full-sized avatar

Aaron Stanley King trendoid

View GitHub Profile
// For more information see https://aka.ms/fsharp-console-apps
printfn "Console App: Started!"
open System.IO
let baseDirectory = __SOURCE_DIRECTORY__
let filePath = "Text.txt"
let fullPath = Path.Combine(baseDirectory, filePath)
let readFilesTask (path1) =
task {