Skip to content

Instantly share code, notes, and snippets.

View ikawaha's full-sized avatar

ikawaha ikawaha

View GitHub Profile
@ikawaha
ikawaha / show-goimport.go
Created February 5, 2015 02:22
show goimports
package main
import (
"fmt"
"go/ast"
"go/parser"
"go/token"
"os"
)
@ikawaha
ikawaha / gist:913dd300105e00242ba1
Created December 16, 2014 02:23
メモリの確保のされ方の確認
package main
import "fmt"
import "unsafe"
type code [4]byte
type tape []code
func main() {
var c code = code{1,2,3,4}