emacs/snippets/kotlin-mode/singleton

7 lines
84 B
Plaintext

# -*- mode: snippet -*-
# name: Singleton
# key: singleton
# --
object $1 {
$0
}