|
|
лет назад: 5 | |
|---|---|---|
| .. | ||
| BUILD | лет назад: 5 | |
| LICENSE | лет назад: 5 | |
| README.md | лет назад: 5 | |
| heredoc.go | лет назад: 5 | |
Package heredoc provides the here-document with keeping indent.
$ go get github.com/MakeNowJust/heredoc
// usual
import "github.com/MakeNowJust/heredoc"
// shortcuts
import . "github.com/MakeNowJust/heredoc/dot"
package main
import (
"fmt"
. "github.com/MakeNowJust/heredoc/dot"
)
func main() {
fmt.Println(D(`
Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, ...
`))
// Output:
// Lorem ipsum dolor sit amet, consectetur adipisicing elit,
// sed do eiusmod tempor incididunt ut labore et dolore magna
// aliqua. Ut enim ad minim veniam, ...
//
}
This software is released under the MIT License, see LICENSE.