[go-nuts] Re: Language is a platform, which golang still does not pay attention to !!!

2018-04-06 Thread T L
On Friday, April 6, 2018 at 11:24:20 PM UTC-4, Hoo Luu wrote: > > > > 在 2018年4月7日星期六 UTC+8上午12:48:56,Doğan Kurt写道: >> >> >> >> On Thursday, April 5, 2018 at 7:26:19 PM UTC+2, bingj...@gmail.com wrote: >>> >>> Almost 10 years golang appears in the world. 10 years is not a short >>> duration. I

[go-nuts] Re: Language is a platform, which golang still does not pay attention to !!!

2018-04-06 Thread Henry
I think the OP was unaware of several facts: 1. Go has been moving up and down the top 10 most popular programming languages in various surveys. 2. Java and PHP are implemented using C/C++. The same goes with the networking components of the various operating systems. So to say that

[go-nuts] Re: Language is a platform, which golang still does not pay attention to !!!

2018-04-06 Thread Hoo Luu
在 2018年4月7日星期六 UTC+8上午12:48:56,Doğan Kurt写道: > > > > On Thursday, April 5, 2018 at 7:26:19 PM UTC+2, bingj...@gmail.com wrote: >> >> Almost 10 years golang appears in the world. 10 years is not a short >> duration. I think if it is not popular until 2020, it will never be popular. >> > > I

[go-nuts] Re: Language is a platform, which golang still does not pay attention to !!!

2018-04-06 Thread Doğan Kurt
On Thursday, April 5, 2018 at 7:26:19 PM UTC+2, bingj...@gmail.com wrote: > > Almost 10 years golang appears in the world. 10 years is not a short > duration. I think if it is not popular until 2020, it will never be popular. > I think it's already fairly popular. > I find one feather: they

[go-nuts] Re: Language is a platform, which golang still does not pay attention to !!!

2018-04-06 Thread matthewjuran
> > But it solves the common problem in the IT industry. In my mind the major common problem is solved by computer hardware, not by a new programming language. Ordering machine instructions is doable for significant work. My take is we’re mostly worried about art here besides those doing big

Re: [go-nuts] Justifying dot imports using comments

2018-04-06 Thread Stefan Nilsson
I prefer the first line to the second, even though it requires a dot import. *Sin*(*Pi*/2)**Sin*(*Pi*/2) + *Cos*(*Pi*)/2 *math.Sin*(*math.Sin*/2)**math.Sin*(*math.Pi*/2) + *math.Cos*(*math.Pi*)/2 But of course in this case there is an even better solution. :) *0.5* On Wednesday, April 4,