Thread overview
Opening a web
Jan 19, 2013
SaltySugar
Jan 19, 2013
Mirko Pilger
Jan 19, 2013
SaltySugar
January 19, 2013
How to open a website in D with your default browser?
January 19, 2013
> How to open a website in D with your default browser?

import std.process;

int main(string[] args)
{
  browse("http://dlang.org");
  return 0;
}
January 19, 2013
On Saturday, 19 January 2013 at 08:09:01 UTC, Mirko Pilger wrote:
>> How to open a website in D with your default browser?
>
> import std.process;
>
> int main(string[] args)
> {
>   browse("http://dlang.org");
>   return 0;
> }

Thank you, man!