[google-appengine] Re: Go Lang everything in a single source?

2013-05-13 Thread Efe Ertugrul
This did work for me. Thanks. 4 Kasım 2012 Pazar 00:18:59 UTC+2 tarihinde Kyle Finley yazdı: In Go -- files within the same directory should belong to the same package. So, both main.go and a.go should be the same package E.g. package script. This turns out to be a really nice feature

[google-appengine] Re: Go Lang everything in a single source?

2012-11-04 Thread Roger Bolton
Have a look at the documentation: http://golang.org/ref/spec#Source_file_organization A way more power full way of combining source code files into a complete program. a choice of package clause and import declarations. app.yaml stays alone to describe to GAE the purpose of the application.

[google-appengine] Re: Go Lang everything in a single source?

2012-11-03 Thread Kyle Finley
In Go -- files within the same directory should belong to the same package. So, both main.go and a.go should be the same package E.g. package script. This turns out to be a really nice feature because it allows you to break your packages into logical pieces with very little effort. I would