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
Papyrus is unable to resolve literals. When you enter a literal like true, 21, or "papyrus rocks" you get the following error
haven't handled expr variant Lit. Raise a request here https://github.com/kurtlawrence/papyrus/issues
you can of course bind these to a variable, and then call the variable name, and they display just fine. You can use literals in more complex expressions, for instance true.to_string() or 9 + 10 gives exactly what you would expect.
The text was updated successfully, but these errors were encountered:
Papyrus is unable to resolve literals. When you enter a literal like
true
,21
, or"papyrus rocks"
you get the following erroryou can of course bind these to a variable, and then call the variable name, and they display just fine. You can use literals in more complex expressions, for instance
true.to_string()
or9 + 10
gives exactly what you would expect.The text was updated successfully, but these errors were encountered: