Second Post
This is the second post. I want to try output instead f results.
printfn "Hello, World!"
doesn’t print output, but it does print results.
let greet name = $"Hello, {name}!"
Which is called with
greet "Jonathan P"
Which will then return:
Hello, Jonathan P!
Read other posts