# -*- mode: snippet -*-
# name: mutable struct ... end
# key: mutstr
# contributor: hankail05
# --
mutable struct ${1:name}
    ${2:body}
end
$0
