diff options
| author | Akshay Nair <phenax5@gmail.com> | 2026-06-26 15:36:49 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2026-06-27 10:41:08 +0530 |
| commit | e751362d9194d9291057759fa33073720c3535fd (patch) | |
| tree | b7098346db2317d2211d7445300d210c49647948 /snippets/ruby | |
| parent | fb52df34924781ed3d42ca8864402c3e7a52d4aa (diff) | |
| download | kakoune-config-e751362d9194d9291057759fa33073720c3535fd.tar.gz kakoune-config-e751362d9194d9291057759fa33073720c3535fd.zip | |
Shnippets
Diffstat (limited to '')
| -rw-r--r-- | snippets/ruby/class.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/snippets/ruby/class.rb b/snippets/ruby/class.rb new file mode 100644 index 0000000..5b16823 --- /dev/null +++ b/snippets/ruby/class.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +class $1 + def initialize + $2 + end + + $3 +end |
