www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Opening a web

reply "SaltySugar" <Butkustomas777 gmail.com> writes:
How to open a website in D with your default browser?
Jan 18 2013
parent reply Mirko Pilger <pilger cymotec.de> writes:
 How to open a website in D with your default browser?
import std.process; int main(string[] args) { browse("http://dlang.org"); return 0; }
Jan 19 2013
parent "SaltySugar" <Butkustomas777 gmail.com> writes:
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!
Jan 19 2013