Any (Type)

Description: An explicitly dynamic value. Match on its runtime type before using it as a concrete value; direct arithmetic, calls and field access are rejected.

Example

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

text : Any
text = "Hello"