Skip to content

Instantly share code, notes, and snippets.

@RaglandCodes
RaglandCodes / go.json
Last active August 29, 2020 04:52
VS Code User Snippets
{
"Print error to console": {
"prefix": "prnterror",
"body": [
"if nil != $1 {",
"\tfmt.Println($1)",
"\tfmt.Println(\"$1 ^ \")",
"}"
],
"description": "Print error to console"