Re: [go-nuts] Will Go be discontinued?

2022-07-26 Thread Ehioje Henry Erabor
This should be a big joke right? On Tue, Jul 26, 2022 at 6:53 AM Amnon wrote: > > On Monday, 25 July 2022 at 19:48:24 UTC+1 Carlos Jimenez wrote: > >> I think it will be discontinued soon >> The average lifespan of a discontinued Google product is *4 years and 1 >> month*. so should be a matter

Re: [go-nuts] Go is easy to lean. But other languages are hard to forget

2020-10-05 Thread Ehioje Henry Erabor
I believe all these are statements of facts based on practical observations that one finds out that to learn GO one needs to unlearn and then learn again. For GO, that is indeed the way to GO. On Mon, Oct 5, 2020 at 12:21 AM Tyler Compton wrote: > I wonder if mailing lists for all languages get

Re: [go-nuts] How do I initialize extemplate (a template engine in golang) so that I can use with Echo minimalist framework

2020-01-10 Thread Ehioje Henry Erabor
NewTemplate(path string) *Template { t := new(Template) t.templates = extemplate.New() } On Wed, Jan 8, 2020 at 5:23 PM Chris Burkert wrote: > xt := {} leaves the templates field nil. > > Ehioje Henry Erabor schrieb am Mi. 8. Jan. 2020 um > 15:59: > >> I a

[go-nuts] How do I initialize extemplate (a template engine in golang) so that I can use with Echo minimalist framework

2020-01-08 Thread Ehioje Henry Erabor
I am having issues using extemplate library in my echo framework project. Library :https://github.com/dannyvankooten/extemplate My Code is below: Enter code here...package main import ( "fmt" "io" "net/http" "github.com/dannyvankooten/extemplate" "github.com/labstack/echo/v4" ) // Template