go+
This commit is contained in:
parent
c2271ba672
commit
23c5e3a66a
2 changed files with 14 additions and 0 deletions
|
|
@ -93,6 +93,7 @@ Who is who in **bin** directory:
|
||||||
- `eman MODULE` shortcut for `erl -man MODULE` (displays the manual page for the Erlang module MODULE)
|
- `eman MODULE` shortcut for `erl -man MODULE` (displays the manual page for the Erlang module MODULE)
|
||||||
- `g+ WHAT` recursively grep current directory
|
- `g+ WHAT` recursively grep current directory
|
||||||
- `git+ MESSAGE` git: commit and push to master
|
- `git+ MESSAGE` git: commit and push to master
|
||||||
|
- `go+` go snippet
|
||||||
- `h+` transform line to heading
|
- `h+` transform line to heading
|
||||||
- `hg+ MESSAGE` hg: commit and push to master
|
- `hg+ MESSAGE` hg: commit and push to master
|
||||||
- `html+` html boilerplate
|
- `html+` html boilerplate
|
||||||
|
|
|
||||||
13
bin/go+
Executable file
13
bin/go+
Executable file
|
|
@ -0,0 +1,13 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
cat << 'GO'
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
|
||||||
|
}
|
||||||
|
GO
|
||||||
Loading…
Add table
Add a link
Reference in a new issue