You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current output is raw Haskell data structures, which are not as readable as well-formatted plain text.
Example
$ pollukcal-cli exec --eval "~~ Text + cup cake"
"Right (TextResult \"cupcake\")"
$ pollukcal-cli exec --infer "~~ Text + cup cake"
"Just (STypeHint \"Text\")"
$ pollukcal-cli exec --check "~~ Text + cup cake"
"Right (Just (STypeHint \"Text\"),\"Inferred type is: Just (STypeHint \\\"Text\\\"), specified: Just (STypeHint \\\"Text\\\")\")"
Aimed
$ pollukcal-cli exec --eval "~~ Text + cup cake"
🪄 cupcake
$ pollukcal-cli exec --infer "~~ Text + cup cake"
👀 Resolved type: Text
$ pollukcal-cli exec --check "~~ Text + cup cake"
👀 Resolved type: Text
🔬 Type checking: ✅
And allow for the original
The text was updated successfully, but these errors were encountered:
What
The current output is raw Haskell data structures, which are not as readable as well-formatted plain text.
Example
Aimed
And allow for the original
The text was updated successfully, but these errors were encountered: