You can use lambdas in code, but the type checker basically ignores them and always gives them the 'any' type. Code like this is accepted, which is obviously wrong: ``` int x = lambda y: 'x' ```