We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The contract String => Any requires the argument to be a string object.
String => Any
The contract 5 => Any requires the argument to be the actual value 5.
5 => Any
So how do I specify that the argument should be the actual value String? This is how it could be specified: Literally[String] => Any.
Literally[String] => Any