{"in":{"data":"private static string GetData(Environment environment, string name)\n{\n  var options = new DefaultOptions();\n  if (environment.IsDevelopment())\n  {\n    options.LocalCredentials = true;\n    options.Path = \"/stuff\";\n  }\n  else\n  {\n    options.LocalCredentials = false;\n  }\n  var uri = new Uri(\"https://example.com/\" + name);\n  var client = new GetClient(uri, options);\n  return client.GetStuff(name);\n}","type":"txt"},"out":{"data":"let getData (environment: Environment) (name: string) : string =\n  let options = DefaultOptions()\n  if environment.IsDevelopment() then\n    options.LocalCredentials \u003c- true\n    options.Path \u003c- \"/stuff\"\n  else\n    options.LocalCredentials \u003c- false\n  let uri = Uri(\"https://example.com/\" + name)\n  let client = GetClient(uri, options)\n  client.GetStuff(name)","type":"txt"},"client":"0.5.0"}