DEV Community

technoshy
technoshy

Posted on

F# is python but better

f# is a compiled and intepreted language
``
open system

let add a b = a + b
let total = add 2 3
printfn $"{total}"

``

Top comments (0)