Python ->

def func(x): -> int
  return x

# it annotates the return type of the function.
# Doesn't force the return type.
Wandering Walrus