The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
267 B
14 lines
267 B
7 years ago
|
import std.stdio;
|
||
|
import url;
|
||
|
|
||
|
void main() {
|
||
|
URL url;
|
||
|
with (url) {
|
||
|
scheme = "soap.beep";
|
||
|
host = "beep.example.net";
|
||
|
port = 1772;
|
||
|
path = "/serverinfo/info";
|
||
|
queryParams.add("token", "my-api-token");
|
||
|
}
|
||
|
writeln(url);
|
||
|
}
|