NOT IN array

Hello, I have the code {{ if in “cn kr” .Lang }} {{ end }}, how can I add NOT, for example {{ if not in “cn kr” .Lang }} {{ end }}

Putting parentheses around the in statement should work:

{{ if not ( in “cn kr” .Lang) }} {{ end }}

Thanks!