Re: Future of D language

2019-04-23 Thread Cym13 via Digitalmars-d-learn
On Wednesday, 24 April 2019 at 05:22:35 UTC, Arjunkumar wrote: I am title bit confuse about learning D Lang and is it well good for future point of view. Currently in a market many of language is present, so why people learn D Lang and any site which provide best tutorials for D Lang? The rea

Re: Future of D language

2019-04-23 Thread Andre Pany via Digitalmars-d-learn
On Wednesday, 24 April 2019 at 05:22:35 UTC, Arjunkumar wrote: I am title bit confuse about learning D Lang and is it well good for future point of view. Currently in a market many of language is present, so why people learn D Lang and any site which provide best tutorials for D Lang? For me,

Future of D language

2019-04-23 Thread Arjunkumar via Digitalmars-d-learn
I am title bit confuse about learning D Lang and is it well good for future point of view. Currently in a market many of language is present, so why people learn D Lang and any site which provide best tutorials for D Lang?

Chat using Socket and Thread

2019-04-23 Thread Allison via Digitalmars-d-learn
How to make a chat for several users chat? Using socket and thread.

Re: gtkDcoding Blog Post # 29 - RadioMenuItems

2019-04-23 Thread Ron Tarrant via Digitalmars-d-learn
On Tuesday, 23 April 2019 at 12:21:37 UTC, number wrote: Hi, thanks! little typo: RadioMeniItem How about that? The typo was in the article, not the code. Makes for a change. :) Thanks for catching, number.

Re: Question regarding readf

2019-04-23 Thread Andre Pany via Digitalmars-d-learn
On Monday, 22 April 2019 at 23:53:59 UTC, Ali Çehreli wrote: On 04/22/2019 03:29 PM, Andre Pany wrote: > I wonder wheter std.stdio is missing a readfln function. Which executes > readln, strips the #10#13 characters and then executes formattedRead. > Does that make sense to you? Makes sense but

Make partial alias of template function

2019-04-23 Thread Andrey via Digitalmars-d-learn
Hello, I want to make partial alias of template function "format": void qaz(alias tmp, Values...)() { alias message = format!tmp; // ... enum v = message(Values); } void main() { qaz!("test %s!", "Qwerty"); } But I get this: Error: static assert: "Orphan

Re: gtkDcoding Blog Post # 29 - RadioMenuItems

2019-04-23 Thread number via Digitalmars-d-learn
On Tuesday, 23 April 2019 at 09:44:12 UTC, Ron Tarrant wrote: Now that we've got Easter out of the way, it's time for another gtkDcoding blog post: http://gtkdcoding.com/2019/04/23/0029-radiomenuitem.html Hi, thanks! little typo: RadioMeniItem

gtkDcoding Blog Post # 29 - RadioMenuItems

2019-04-23 Thread Ron Tarrant via Digitalmars-d-learn
Now that we've got Easter out of the way, it's time for another gtkDcoding blog post: http://gtkdcoding.com/2019/04/23/0029-radiomenuitem.html

Re: Question regarding readf

2019-04-23 Thread diniz via Digitalmars-d-learn
Le 23/04/2019 à 00:23, Adam D. Ruppe via Digitalmars-d-learn a écrit : (my personal feeling though is readf is just a pile of confusion and should almost never be used. I hate that it is introduced so early in most tutorials... I'd rather have it in an appendix for special cases only rather than