12 lines
No EOL
213 B
Text
12 lines
No EOL
213 B
Text
# -*- 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
|
|
} |