Open DamianReeves opened 1 year ago
Implement a TypeProvider that generates Morphir IR from Elm code, as well as generates F# from Elm.
For example:
type MyModule = ElmTypeProvider<""" module MyModule exposing (...) greet:String -> String greet target = String.concat ["Hello, " target] """>
Would allow this:
MyModule.greet "Bob" |> printfn
Implement a TypeProvider that generates Morphir IR from Elm code, as well as generates F# from Elm.
For example:
Would allow this: