1. import std.net.curl;
  2.  
  3.  
  4.  
  5. void main() {
  6.  
  7.         auto http = HTTP("173.194.69.94");
  8.         http.verbose(false);
  9.         http.method = HTTP.Method.options;
  10.         http.perform();
  11.  
  12. }