Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| package example | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "net/http" | |
| "google.golang.org/appengine" | |
| "google.golang.org/appengine/file" | |
| "google.golang.org/appengine/log" |
| package example | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "net/http" | |
| "google.golang.org/appengine" | |
| "google.golang.org/appengine/file" | |
| "google.golang.org/appengine/log" |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| // Package lex implements the lexical scanner for Suneido | |
| package lex | |
| import ( | |
| "bytes" | |
| "strings" | |
| "unicode" | |
| "unicode/utf8" | |
| ) |
| package web | |
| import ( | |
| "reflect" | |
| "strconv" | |
| "strings" | |
| "util" | |
| ) | |
| const ( |
| package main | |
| import ( | |
| "database/sql" | |
| "encoding/json" | |
| "errors" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "time" |
| package main | |
| import ( | |
| "encoding/json" | |
| "log" | |
| "net/http" | |
| "reflect" | |
| "time" | |
| "github.com/gorilla/context" |
| @echo off | |
| @rem \"%stPath%\" : Path to Sublime Text installation dir. | |
| @rem %UserEntry%: Key name for the registry entry. | |
| @rem %UserMenuText% : Context menu text. Set your preferred menu text (e.g.: translate to your language). | |
| @rem %AdminEntry%: Key name for the registry entry. | |
| @rem %AdminMenuText% : Context menu text. Set your preferred menu text for administrator privilege (e.g.: translate to your language). | |
| SET stPath=%~dp0sublime_text.exe | |
| SET UserEntry=Sublime Text | |
| SET AdminEntry=Sublime Text As Admin |
| package main | |
| // run from the command line as: | |
| // go test -bench=".* | |
| import ( | |
| "testing" | |
| ) | |
| func BenchmarkJSON(b *testing.B) { |