swannodette / ob-sml

org-babel support for Standard ML
10 stars 3 forks source link

The plugin doesn't display the results of all the expressions #8

Open kshenoy opened 7 years ago

kshenoy commented 7 years ago

Here's a sample code in an sml code block:

val oa = NONE;
val ob = SOME 1;
isSome oa;
isSome ob;
valOf ob;

When I evaluate this expression (with C-c C-c), I get only

: val ob = SOME 1 : int option

as the result. For some reason, it doesn't show the result of any expressions except the second