mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
12 lines
213 B
Plaintext
12 lines
213 B
Plaintext
# -*- mode: snippet -*-
|
|
# group: file templates
|
|
# contributor: Edmund Miller
|
|
# name: solidity template
|
|
# --
|
|
// SPDX-License-Identifier: ${1:UNLICENSED}
|
|
|
|
pragma solidity ${2:>=0.8.7 <0.9.0};
|
|
|
|
contract $3 {
|
|
$0
|
|
} |