# -*- mode: snippet -*-
# name: __neg__
# key: _neg
# group: Special methods
# --
def __neg__(self):
    return $0
