
After go1.16, go will use module mode by default, even when the repository is checked out under GOPATH or in a one-off directory. Add go.mod, go.sum to keep this repo buildable without opting out of the module mode. > go mod init github.com/mmcgrana/gobyexample > go mod tidy > go mod vendor In module mode, the 'vendor' directory is special and its contents will be actively maintained by the go command. pygments aren't the dependency the go will know about, so it will delete the contents from vendor directory. Move it to `third_party` directory now. And, vendor the blackfriday package. Note: the tutorial contents are not affected by the change in go1.16 because all the examples in this tutorial ask users to run the go command with the explicit list of files to be compiled (e.g. `go run hello-world.go` or `go build command-line-arguments.go`). When the source list is provided, the go command does not have to compute the build list and whether it's running in GOPATH mode or module mode becomes irrelevant.
38 lines
891 B
Plaintext
38 lines
891 B
Plaintext
|
|
R version 2.9.2 (2009-08-24)
|
|
Copyright (C) 2009 The R Foundation for Statistical Computing
|
|
ISBN 3-900051-07-0
|
|
|
|
R is free software and comes with ABSOLUTELY NO WARRANTY.
|
|
You are welcome to redistribute it under certain conditions.
|
|
Type 'license()' or 'licence()' for distribution details.
|
|
|
|
Natural language support but running in an English locale
|
|
|
|
R is a collaborative project with many contributors.
|
|
Type 'contributors()' for more information and
|
|
'citation()' on how to cite R or R packages in publications.
|
|
|
|
Type 'demo()' for some demos, 'help()' for on-line help, or
|
|
'help.start()' for an HTML browser interface to help.
|
|
Type 'q()' to quit R.
|
|
|
|
[R.app GUI 1.29 (5464) i386-apple-darwin8.11.1]
|
|
|
|
> x <- function {}
|
|
Error: syntax error
|
|
> x <- function() {}
|
|
> x <- function() {
|
|
+ cat("hello")
|
|
+ cat("world")
|
|
+ }
|
|
> x
|
|
function() {
|
|
cat("hello")
|
|
cat("world")
|
|
}
|
|
> x()
|
|
helloworld
|
|
> 2 + 2
|
|
[1] 4
|
|
> |