I'm just starting to use F# for the first time, using VSCode and interactive notebooks. I am super annoyed at having to constantly write out
printfn "%A" something
because it kills me inside.
Is it wrong to at the start of every file simply write:
let print(something) = printfn "%A" something
// then use with
print(4 + 3) // int
print(3.7 + 1.1) //float
print("this is so much better") // text
Why the heck isn't this built in?!