mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-15 05:53:04 +00:00
10 lines
163 B
Plaintext
10 lines
163 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: Enum
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: include Enumerable ..
|
|
# --
|
|
include Enumerable
|
|
|
|
def each(&block)
|
|
$0
|
|
end |