The contract `String => Any` requires the argument to be _a string object_. The contract `5 => Any` requires the argument to be _the actual value 5_. So how do I specify that the argument should be _the actual value String_? This is how it could be specified: `Literally[String] => Any`.