Skip to content

Instantly share code, notes, and snippets.

View jgoc's full-sized avatar
🍹
work

Gocs Jess jgoc

🍹
work
View GitHub Profile
@jgoc
jgoc / error_stack.go
Last active August 16, 2019 03:01
golang error message stacking
package main
import (
"errors"
"fmt"
)
func main() {
flow()
fmt.Println("continued")
@jgoc
jgoc / launch.json
Created July 11, 2019 00:18
golang delve debugging in vscode launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",