I have looked at other instructions and still do not know how to do this. I have two projects (Calculator in C # and Logic in F #). I added a link to Logic in the calculator, as well as a link to FSharp.Core
However, when I add the line
float result = Logic.start(formula);
In my C # project, I get an error:
"The name Logic does not exist in the current context."
There is a Logic module in a logical project, so should it display correctly? What am I missing yet?
EDIT: Here's the function definition ...
let start formula = core (List.ofSeq formula) [] []
c # visual-studio f #
Swiftcore
source share