summaryrefslogtreecommitdiff
path: root/test/ocaml/string_equality/string_equality.sail
blob: 686298620013e325e91232f2484b8c942f536ada (plain)
1
2
3
4
5
6
7
8
9
10
val unit -> unit effect pure main

function main () = {
  if ("test" == "test") then {
    print("true")
  } else {
    print("false")
  }
}