Description: A type that can represent any value. Useful for generic programming but should be used carefully as it bypasses type checking.

Example #

let value: Any = 42
let text: Any = "Hello"