1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" dir="ltr" class="client-nojs" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Go (programming language) - Wikipedia, the free encyclopedia</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="generator" content="MediaWiki 1.20wmf10" />
<link rel="canonical" href="/wiki/Go_(programming_language)" />
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=Go_(programming_language)&action=edit" />
<link rel="edit" title="Edit this page" href="/w/index.php?title=Go_(programming_language)&action=edit" />
<link rel="apple-touch-icon" href="" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" />
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" />
<link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" />
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom" />
<link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=ext.gadget.ReferenceTooltips%2Cteahouse%7Cext.geshi.local%7Cext.wikihiero%7Cmediawiki.legacy.commonPrint%2Cshared%7Cskins.vector&only=styles&skin=vector&*" type="text/css" media="all" />
<meta name="ResourceLoaderDynamicStyles" content="" />
<link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=site&only=styles&skin=vector&*" type="text/css" media="all" />
<style type="text/css" media="all">a:lang(ar),a:lang(ckb),a:lang(fa),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
/* cache key: enwiki:resourceloader:filter:minify-css:7:8d95de22da3b74bdc8517ef8752d1bee */
</style>
<script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=startup&only=scripts&skin=vector&*" type="text/javascript"></script>
<script type="text/javascript">if(window.mw){
mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Go_(programming_language)","wgTitle":"Go (programming language)","wgCurRevisionId":508833010,"wgArticleId":25039021,"wgIsArticle":true,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Wikipedia introduction cleanup from March 2012","All pages needing cleanup","Articles covered by WikiProject Wikify from March 2012","All articles covered by WikiProject Wikify","All articles with unsourced statements","Articles with unsourced statements from May 2012","Articles containing potentially dated statements from March 2012","All articles containing potentially dated statements","Use dmy dates from August 2011","C programming language family","Concurrent programming languages","Google software","Procedural programming languages","Systems programming languages","Cross-platform software","Programming languages created in 2009","American inventions"],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"Go_(programming_language)","wgRestrictionEdit":[],"wgRestrictionMove":[],"wgSearchNamespaces":[0],"wgRedirectedFrom":"Golang","wgVectorEnabledModules":{"collapsiblenav":true,"collapsibletabs":true,"editwarning":true,"expandablesearch":false,"footercleanup":false,"sectioneditlinks":false,"simplesearch":true,"experiments":true},"wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"hidesig":true,"templateEditor":false,"templates":false,"preview":false,"previewDialog":false,"publish":false,"toc":false},"wgTrackingToken":"729ec9a203fdeb630fabc00c6350e6c9","wgArticleFeedbackv5Permissions":{"aft-reader":true,"aft-member":false,"aft-editor":false,"aft-monitor":false,"aft-administrator":false,"aft-oversighter":false},"wikilove-recipient":"","wikilove-anon":0,"mbEmailEnabled":true,"mbUserEmail":false,"mbIsEmailConfirmationPending":false,"wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","Geo":{"city":"","country":""},"wgNoticeProject":"wikipedia","aftv5Whitelist":false});
}</script><script type="text/javascript">if(window.mw){
mw.loader.implement("user.options",function(){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"disablesuggest":0,"editfont":"default","editondblclick":0,"editsection":1,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"externaldiff":0,"externaleditor":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"justify":0,"math":0,"minordefault":0,"newpageshidepatrolled":0,"nocache":0,"noconvertlink":0,"norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"quickbar":5,"rcdays":7,"rclimit":50,"rememberpassword":0,"rows":25,"searchlimit":20,"showhiddencats":false,"showjumplinks":1,"shownumberswatching":1,"showtoc":1,"showtoolbar":1,"skin":"vector","stubthreshold":0,"thumbsize":4,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":1,"watchdefault":0,"watchdeletion":0,"watchlistdays":3
,"watchlisthideanons":0,"watchlisthidebots":0,"watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,"flaggedrevssimpleui":1,"flaggedrevsstable":0,"flaggedrevseditdiffs":true,"flaggedrevsviewdiffs":false,"vector-simplesearch":1,"useeditwarning":1,"vector-collapsiblenav":1,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"wikilove-enabled":1,"variant":"en","language":"en","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":false,"searchNs15":false,"searchNs100":false,"searchNs101":false,"searchNs108":false,"searchNs109":false,"gadget-teahouse":1,"gadget-ReferenceTooltips":1,"gadget-DRN-wizard":1,"gadget-mySandbox":1});;},{},{});mw.loader.implement("user.tokens",function(){mw.user.tokens.set({"editToken":"+\\",
"watchToken":false});;},{},{});
/* cache key: enwiki:resourceloader:filter:minify-js:7:81f7c0502e347822f14be81f96ff03ab */
}</script>
<script type="text/javascript">if(window.mw){
mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax","ext.wikimediaShopLink.core","ext.centralNotice.bannerController"]);
}</script>
<style type="text/css">/*<![CDATA[*/
.source-go {line-height: normal;}
.source-go li, .source-go pre {
line-height: normal; border: 0px none white;
}
/**
* GeSHi Dynamically Generated Stylesheet
* --------------------------------------
* Dynamically generated stylesheet for go
* CSS class: source-go, CSS id:
* GeSHi (C) 2004 - 2007 Nigel McNie, 2007 - 2008 Benny Baumann
* (http://qbnz.com/highlighter/ and http://geshi.org/)
* --------------------------------------
*/
.go.source-go .de1, .go.source-go .de2 {font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;}
.go.source-go {font-family:monospace;}
.go.source-go .imp {font-weight: bold; color: red;}
.go.source-go li, .go.source-go .li1 {font-weight: normal; vertical-align:top;}
.go.source-go .ln {width:1px;text-align:right;margin:0;padding:0 2px;vertical-align:top;}
.go.source-go .li2 {font-weight: bold; vertical-align:top;}
.go.source-go .kw1 {color: #b1b100; font-weight: bold;}
.go.source-go .kw2 {color: #000000; font-weight: bold;}
.go.source-go .kw3 {color: #000066;}
.go.source-go .kw4 {color: #993333;}
.go.source-go .kw5 {color: #003399;}
.go.source-go .co1 {color: #666666; font-style: italic;}
.go.source-go .co2 {color: #0000ff;}
.go.source-go .coMULTI {color: #666666; font-style: italic;}
.go.source-go .es1 {color: #000099; font-weight: bold;}
.go.source-go .es2 {color: #000099;}
.go.source-go .es3 {color: #000099;}
.go.source-go .es4 {color: #000099;}
.go.source-go .es5 {color: #000099;}
.go.source-go .sy1 {color: #339933;}
.go.source-go .sy2 {color: #339933;}
.go.source-go .sy3 {color: #339933;}
.go.source-go .sy4 {color: #000000; font-weight: bold;}
.go.source-go .st0 {color: #cc66cc;}
.go.source-go .nu0 {color: #cc66cc;}
.go.source-go .me0 {color: #004000;}
.go.source-go .ln-xtra, .go.source-go li.ln-xtra, .go.source-go div.ln-xtra {background-color: #ffc;}
.go.source-go span.xtra { display:block; }
/*]]>*/
</style><script src="//bits.wikimedia.org/geoiplookup"></script><!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/skins-1.20wmf10/vector/csshover.min.htc")}</style><![endif]--></head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-Go_programming_language skin-vector action-view vector-animateLayout">
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<!-- content -->
<div id="content" class="mw-body">
<a id="top"></a>
<div id="mw-js-message" style="display:none;"></div>
<!-- sitenotice -->
<div id="siteNotice"><!-- CentralNotice --><script>mw.centralNotice.initialize();</script></div>
<!-- /sitenotice -->
<!-- firstHeading -->
<h1 id="firstHeading" class="firstHeading"><span dir="auto">Go (programming language)</span></h1>
<!-- /firstHeading -->
<!-- bodyContent -->
<div id="bodyContent">
<!-- tagline -->
<div id="siteSub">From Wikipedia, the free encyclopedia</div>
<!-- /tagline -->
<!-- subtitle -->
<div id="contentSub"> (Redirected from <a href="/w/index.php?title=Golang&redirect=no" title="Golang">Golang</a>)</div>
<!-- /subtitle -->
<!-- jumpto -->
<div id="jump-to-nav" class="mw-jump">
Jump to: <a href="#mw-head">navigation</a>, <a href="#p-search">search</a>
</div>
<!-- /jumpto -->
<!-- bodycontent -->
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div style="display:none;" class="pef-notification-container">
<div class="pef-notification">
<div class="pef-notification-checkmark"> </div>
<span></span>
</div>
</div><div class="dablink">Not to be confused with <a href="/wiki/Go!_(programming_language)" title="Go! (programming language)">Go! (programming language)</a>, an agent-based language released in 2003.</div>
<table class="metadata plainlinks ambox ambox-style ambox-lead_too_short" style="">
<tr>
<td class="mbox-image">
<div style="width: 52px;"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/f/f2/Edit-clear.svg/40px-Edit-clear.svg.png" width="40" height="40" /></div>
</td>
<td class="mbox-text" style=""><span class="mbox-text-span">This article's <b><a href="/wiki/Wikipedia:Manual_of_Style/Lead_section" title="Wikipedia:Manual of Style/Lead section">lead section</a> may not adequately <a href="/wiki/Wikipedia:Summary_style" title="Wikipedia:Summary style">summarize</a> all of its contents</b>. <span class="hide-when-compact">Please consider expanding the lead to <a href="/wiki/Wikipedia:Manual_of_Style/Lead_section#Provide_an_accessible_overview" title="Wikipedia:Manual of Style/Lead section">provide an accessible overview</a> of <i>all</i> of the article's key points.</span> <small><i>(March 2012)</i></small> </span></td>
</tr>
</table>
<table class="infobox vevent" cellspacing="5" style="width:22em;">
<caption class="summary" style="">Go</caption>
<tr class="">
<td colspan="2" class="" style="text-align:center;"><a href="/wiki/File:Golang.png" class="image"><img alt="Golang.png" src="//upload.wikimedia.org/wikipedia/en/2/23/Golang.png" width="153" height="55" /></a></td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;"><a href="/wiki/Programming_paradigm" title="Programming paradigm">Paradigm(s)</a></th>
<td class="" style=""><a href="/wiki/Compiled_language" title="Compiled language">compiled</a>, <a href="/wiki/Concurrent_programming" title="Concurrent programming" class="mw-redirect">concurrent</a>, <a href="/wiki/Imperative_programming" title="Imperative programming">imperative</a>, <a href="/wiki/Structured_programming" title="Structured programming">structured</a></td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;">Appeared in</th>
<td class="" style="">2009</td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;">Designed by</th>
<td class="organiser" style="">Robert Griesemer<br />
<a href="/wiki/Rob_Pike" title="Rob Pike">Rob Pike</a><br />
<a href="/wiki/Ken_Thompson" title="Ken Thompson">Ken Thompson</a></td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;"><a href="/wiki/Software_developer" title="Software developer">Developer</a></th>
<td class="" style=""><a href="/wiki/Google" title="Google">Google Inc.</a></td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;"><a href="/wiki/Software_release_life_cycle" title="Software release life cycle">Stable release</a></th>
<td class="" style="">version 1.0.2<sup id="cite_ref-0" class="reference"><a href="#cite_note-0"><span>[</span>1<span>]</span></a></sup> (14 June 2012<span class="noprint">; 2 months ago</span><span style="display:none"> (<span class="bday dtstart published updated">2012-06-14</span>)</span>)</td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;"><a href="/wiki/Type_system" title="Type system">Typing discipline</a></th>
<td class="" style=""><a href="/wiki/Strong_typing" title="Strong typing">strong</a>, <a href="/wiki/Static_typing" title="Static typing" class="mw-redirect">static</a></td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;"><a href="/wiki/Programming_language_implementation" title="Programming language implementation">Major implementations</a></th>
<td class="" style="">gc (8g, 6g, 5g), gccgo</td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;">Influenced by</th>
<td class="" style=""><a href="/wiki/C_(programming_language)" title="C (programming language)">C</a>, <a href="/wiki/Limbo_(programming_language)" title="Limbo (programming language)">Limbo</a>, <a href="/wiki/Modula" title="Modula">Modula</a>, <a href="/wiki/Newsqueak" title="Newsqueak">Newsqueak</a>, <a href="/wiki/Oberon_(programming_language)" title="Oberon (programming language)">Oberon</a>, <a href="/wiki/Pascal_(programming_language)" title="Pascal (programming language)">Pascal</a>,<sup id="cite_ref-langfaq_1-0" class="reference"><a href="#cite_note-langfaq-1"><span>[</span>2<span>]</span></a></sup> <a href="/wiki/Python_(programming_language)" title="Python (programming language)">Python</a></td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;"><a href="/wiki/Operating_system" title="Operating system">OS</a></th>
<td class="" style=""><a href="/wiki/Linux" title="Linux">Linux</a>, <a href="/wiki/Mac_OS_X" title="Mac OS X" class="mw-redirect">Mac OS X</a>, <a href="/wiki/FreeBSD" title="FreeBSD">FreeBSD</a>, <a href="/wiki/OpenBSD" title="OpenBSD">OpenBSD</a>, <a href="/wiki/Microsoft_Windows" title="Microsoft Windows">MS Windows</a>, <a href="/wiki/Plan_9_from_Bell_Labs" title="Plan 9 from Bell Labs">Plan 9</a><sup id="cite_ref-2" class="reference"><a href="#cite_note-2"><span>[</span>3<span>]</span></a></sup></td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;"><a href="/wiki/Software_license" title="Software license">License</a></th>
<td class="" style=""><a href="/wiki/BSD_licenses" title="BSD licenses">BSD</a>-style<sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span>[</span>4<span>]</span></a></sup> + Patent grant<sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span>[</span>5<span>]</span></a></sup></td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;">Usual <a href="/wiki/Filename_extension" title="Filename extension">filename extensions</a></th>
<td class="" style="">.go</td>
</tr>
<tr class="">
<th scope="row" style="text-align:left;">Website</th>
<td class="" style=""><span class="url"><a rel="nofollow" class="external text" href="http://golang.org">golang.org</a></span></td>
</tr>
</table>
<p><b>Go</b> is a <a href="/wiki/Compiled_language" title="Compiled language">compiled</a>, <a href="/wiki/Garbage_collection_(computer_science)" title="Garbage collection (computer science)">garbage-collected</a>, <a href="/wiki/Concurrent_programming_language" title="Concurrent programming language" class="mw-redirect">concurrent</a> <a href="/wiki/Programming_language" title="Programming language">programming language</a> developed by <a href="/wiki/Google" title="Google">Google Inc.</a><sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span>[</span>6<span>]</span></a></sup></p>
<p>The initial design of Go was started in September 2007 by <a href="/w/index.php?title=Robert_Griesemer&action=edit&redlink=1" class="new" title="Robert Griesemer (page does not exist)">Robert Griesemer</a>, <a href="/wiki/Rob_Pike" title="Rob Pike">Rob Pike</a>, and <a href="/wiki/Ken_Thompson" title="Ken Thompson">Ken Thompson</a>.<sup id="cite_ref-langfaq_1-1" class="reference"><a href="#cite_note-langfaq-1"><span>[</span>2<span>]</span></a></sup> Go was officially announced in November 2009. In May 2010, Rob Pike publicly stated that Go was being used "for real stuff" at Google.<sup id="cite_ref-register_6-0" class="reference"><a href="#cite_note-register-6"><span>[</span>7<span>]</span></a></sup> Go's "gc" compiler targets the <a href="/wiki/Linux" title="Linux">Linux</a>, <a href="/wiki/Mac_OS_X" title="Mac OS X" class="mw-redirect">Mac OS X</a>, <a href="/wiki/FreeBSD" title="FreeBSD">FreeBSD</a>, <a href="/wiki/OpenBSD" title="OpenBSD">OpenBSD</a>, <a href="/wiki/Plan_9_from_Bell_Labs" title="Plan 9 from Bell Labs">Plan 9</a>, and <a href="/wiki/Microsoft_Windows" title="Microsoft Windows">Microsoft Windows</a> operating systems and the <a href="/wiki/I386" title="I386" class="mw-redirect">i386</a>, <a href="/wiki/Amd64" title="Amd64" class="mw-redirect">amd64</a>, and <a href="/wiki/ARM" title="ARM" class="mw-redirect">ARM</a> processor architectures.<sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span>[</span>8<span>]</span></a></sup></p>
<table id="toc" class="toc">
<tr>
<td>
<div id="toctitle">
<h2>Contents</h2>
</div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="#Goals"><span class="tocnumber">1</span> <span class="toctext">Goals</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#Description"><span class="tocnumber">2</span> <span class="toctext">Description</span></a></li>
<li class="toclevel-1 tocsection-3"><a href="#Type_system"><span class="tocnumber">3</span> <span class="toctext">Type system</span></a></li>
<li class="toclevel-1 tocsection-4"><a href="#Name_visibility"><span class="tocnumber">4</span> <span class="toctext">Name visibility</span></a></li>
<li class="toclevel-1 tocsection-5"><a href="#Concurrency"><span class="tocnumber">5</span> <span class="toctext">Concurrency</span></a></li>
<li class="toclevel-1 tocsection-6"><a href="#Implementations"><span class="tocnumber">6</span> <span class="toctext">Implementations</span></a></li>
<li class="toclevel-1 tocsection-7"><a href="#Examples"><span class="tocnumber">7</span> <span class="toctext">Examples</span></a>
<ul>
<li class="toclevel-2 tocsection-8"><a href="#Hello_world"><span class="tocnumber">7.1</span> <span class="toctext">Hello world</span></a></li>
<li class="toclevel-2 tocsection-9"><a href="#Echo"><span class="tocnumber">7.2</span> <span class="toctext">Echo</span></a></li>
</ul>
</li>
<li class="toclevel-1 tocsection-10"><a href="#Reception"><span class="tocnumber">8</span> <span class="toctext">Reception</span></a></li>
<li class="toclevel-1 tocsection-11"><a href="#Naming_dispute"><span class="tocnumber">9</span> <span class="toctext">Naming dispute</span></a></li>
<li class="toclevel-1 tocsection-12"><a href="#See_also"><span class="tocnumber">10</span> <span class="toctext">See also</span></a></li>
<li class="toclevel-1 tocsection-13"><a href="#References"><span class="tocnumber">11</span> <span class="toctext">References</span></a></li>
<li class="toclevel-1 tocsection-14"><a href="#Further_reading"><span class="tocnumber">12</span> <span class="toctext">Further reading</span></a></li>
<li class="toclevel-1 tocsection-15"><a href="#External_links"><span class="tocnumber">13</span> <span class="toctext">External links</span></a></li>
</ul>
</td>
</tr>
</table>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=1" title="Edit section: Goals">edit</a>]</span> <span class="mw-headline" id="Goals">Goals</span></h2>
<p>Go aims to provide the efficiency of a <a href="/wiki/Statically_typed" title="Statically typed" class="mw-redirect">statically typed</a> compiled language with the ease of programming of a <a href="/wiki/Dynamic_programming_language" title="Dynamic programming language">dynamic language</a>.<sup id="cite_ref-go_lang_video_2009_8-0" class="reference"><a href="#cite_note-go_lang_video_2009-8"><span>[</span>9<span>]</span></a></sup> Other goals include:</p>
<ul>
<li>Safety: <a href="/wiki/Type-safe" title="Type-safe" class="mw-redirect">Type-safe</a> and <a href="/wiki/Memory_safety" title="Memory safety">memory-safe</a>.</li>
<li>Good support for concurrency and communication.</li>
<li>Efficient, latency-free garbage collection.</li>
<li>High-speed compilation.</li>
</ul>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=2" title="Edit section: Description">edit</a>]</span> <span class="mw-headline" id="Description">Description</span></h2>
<p>The <a href="/wiki/Syntax_(programming_languages)" title="Syntax (programming languages)">syntax</a> of Go is broadly similar to that of <a href="/wiki/C_(programming_language)" title="C (programming language)">C</a>: blocks of code are surrounded with <a href="/wiki/Curly_brace" title="Curly brace" class="mw-redirect">curly braces</a>; common <a href="/wiki/Control_flow" title="Control flow">control flow</a> structures include <code><a href="/wiki/For_loop" title="For loop">for</a></code>, <code><a href="/wiki/Switch_statement" title="Switch statement">switch</a></code>, and <code><a href="/wiki/Conditional_(programming)" title="Conditional (programming)">if</a></code>. Unlike C, line-ending semicolons are optional, variable declarations are written differently and are usually optional, type conversions must be made explicit, and new <code>go</code> and <code>select</code> control keywords have been introduced to support concurrent programming. New built-in types include maps, Unicode strings, array slices, and channels for inter-thread communication.</p>
<p>Go is designed for exceptionally fast compiling times, even on modest hardware.<sup id="cite_ref-techtalk-compiling_9-0" class="reference"><a href="#cite_note-techtalk-compiling-9"><span>[</span>10<span>]</span></a></sup> The language requires <a href="/wiki/Garbage_collection_(computer_science)" title="Garbage collection (computer science)">garbage collection</a>. Certain concurrency-related structural conventions of Go (<a href="/wiki/Channel_(programming)" title="Channel (programming)">channels</a> and alternative channel inputs) are borrowed from <a href="/wiki/C._A._R._Hoare" title="C. A. R. Hoare" class="mw-redirect">Tony Hoare's</a> <a href="/wiki/Communicating_sequential_processes" title="Communicating sequential processes">CSP</a>. Unlike previous concurrent programming languages such as <a href="/wiki/Occam_(programming_language)" title="Occam (programming language)">occam</a> or <a href="/wiki/Limbo_(programming_language)" title="Limbo (programming language)">Limbo</a>, Go does not provide any built-in notion of safe or verifiable concurrency.<sup id="cite_ref-memmodel_10-0" class="reference"><a href="#cite_note-memmodel-10"><span>[</span>11<span>]</span></a></sup></p>
<p>Of features found in C++ or Java, Go does not include <a href="/wiki/Inheritance_(object-oriented_programming)" title="Inheritance (object-oriented programming)">type inheritance</a>, <a href="/wiki/Generic_programming" title="Generic programming">generic programming</a>, <a href="/wiki/Assertion_(computing)" title="Assertion (computing)">assertions</a>, <a href="/wiki/Method_overloading" title="Method overloading" class="mw-redirect">method overloading</a>, or <a href="/wiki/Pointer_arithmetic" title="Pointer arithmetic" class="mw-redirect">pointer arithmetic</a>.<sup id="cite_ref-langfaq_1-2" class="reference"><a href="#cite_note-langfaq-1"><span>[</span>2<span>]</span></a></sup> Of these, the Go authors express an openness to generic programming, explicitly argue against assertions and pointer arithmetic, while defending the choice to omit type inheritance as giving a more useful language, encouraging heavy use of <a href="/wiki/Protocol_(object-oriented_programming)" title="Protocol (object-oriented programming)">interfaces</a> instead.<sup id="cite_ref-langfaq_1-3" class="reference"><a href="#cite_note-langfaq-1"><span>[</span>2<span>]</span></a></sup> Initially, the language did not include <a href="/wiki/Exception_handling" title="Exception handling">exception handling</a>, but in March 2010 a mechanism known as <code>panic</code>/<code>recover</code> was implemented to handle exceptional errors while avoiding some of the problems the Go authors find with exceptions.<sup id="cite_ref-11" class="reference"><a href="#cite_note-11"><span>[</span>12<span>]</span></a></sup><sup id="cite_ref-12" class="reference"><a href="#cite_note-12"><span>[</span>13<span>]</span></a></sup></p>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=3" title="Edit section: Type system">edit</a>]</span> <span class="mw-headline" id="Type_system">Type system</span></h2>
<p>Go allows a programmer to write functions that can operate on inputs of arbitrary type, provided that the type implements the functions defined by a given interface.</p>
<p>Unlike <a href="/wiki/Java_(programming_language)" title="Java (programming language)">Java</a>, the interfaces a type supports do not need to be specified at the point at which the type is defined, and Go interfaces do not participate in a type hierarchy. A Go interface is best described as a set of methods, each identified by a name and signature. A type is considered to implement an interface if all the required methods have been defined for that type. An interface can be declared to "embed" other interfaces, meaning the declared interface includes the methods defined in the other interfaces.<sup id="cite_ref-memmodel_10-1" class="reference"><a href="#cite_note-memmodel-10"><span>[</span>11<span>]</span></a></sup></p>
<p>Unlike Java, the in-memory representation of an object does not contain a pointer to a <a href="/wiki/Virtual_method_table" title="Virtual method table">virtual method table</a>. Instead a value of interface type is implemented as a pair of a pointer to the object, and a pointer to a dictionary containing implementations of the interface methods for that type.</p>
<p>Consider the following example:</p>
<div dir="ltr" class="mw-geshi mw-code mw-content-ltr">
<div class="go source-go">
<pre class="de1">
<span class="kw1">type</span> Sequence <span class="sy1">[]</span><span class="kw4">int</span>
<span class="kw4">func</span> <span class="sy1">(</span>s Sequence<span class="sy1">)</span> Len<span class="sy1">()</span> <span class="kw4">int</span> <span class="sy1">{</span>
<span class="kw1">return</span> <span class="kw3">len</span><span class="sy1">(</span>s<span class="sy1">)</span>
<span class="sy1">}</span>
<span class="kw1">type</span> HasLength <span class="kw4">interface</span> <span class="sy1">{</span>
Len<span class="sy1">()</span> <span class="kw4">int</span>
<span class="sy1">}</span>
<span class="kw4">func</span> Foo <span class="sy1">(</span>o HasLength<span class="sy1">)</span> <span class="sy1">{</span>
<span class="sy4">...</span>
<span class="sy1">}</span>
</pre></div>
</div>
<p>These four definitions could have been placed in separate files, in different parts of the program. Notably, the programmer who defined the <code>Sequence</code> type did not need to declare that the type implemented <code>HasLength</code>, and the person who implemented the <code>Len</code> method for <code>Sequence</code> did not need to specify that this method was part of <code>HasLength</code>.</p>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=4" title="Edit section: Name visibility">edit</a>]</span> <span class="mw-headline" id="Name_visibility">Name visibility</span></h2>
<p><a href="/wiki/Linkage_(software)" title="Linkage (software)">Visibility</a> of structures, structure fields, variables, constants, methods, top-level types and functions outside their defining package is defined implicitly according to the capitalization of their identifier.<sup id="cite_ref-13" class="reference"><a href="#cite_note-13"><span>[</span>14<span>]</span></a></sup></p>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=5" title="Edit section: Concurrency">edit</a>]</span> <span class="mw-headline" id="Concurrency">Concurrency</span></h2>
<p>Go provides <i>goroutines</i>, small lightweight threads; the name alludes to <a href="/wiki/Coroutine" title="Coroutine">coroutines</a>. Goroutines are created with the <code>go</code> statement from anonymous or named functions.</p>
<p>Goroutines are executed in parallel with other goroutines, including their caller. They do not necessarily run in separate threads, but a group of goroutines are multiplexed onto multiple threads — execution control is moved between them by blocking them when sending or receiving messages over channels.</p>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=6" title="Edit section: Implementations">edit</a>]</span> <span class="mw-headline" id="Implementations">Implementations</span></h2>
<p>There are currently two Go compilers:</p>
<ul>
<li>6g/8g/5g (the compilers for AMD64, x86, and ARM respectively) with their supporting tools (collectively known as "gc") based on Ken's previous work on <a href="/wiki/Plan_9_from_Bell_Labs" title="Plan 9 from Bell Labs">Plan 9</a>'s C toolchain.</li>
<li>gccgo, a <a href="/wiki/GNU_Compiler_Collection" title="GNU Compiler Collection">GCC</a> frontend written in C++,<sup id="cite_ref-14" class="reference"><a href="#cite_note-14"><span>[</span>15<span>]</span></a></sup> and now officially supported as of version 4.6, albeit not part of the standard binary for gcc.<sup id="cite_ref-15" class="reference"><a href="#cite_note-15"><span>[</span>16<span>]</span></a></sup></li>
</ul>
<p>Both compilers work on Unix-like systems, and a port to Microsoft Windows of the gc compiler and runtime have been integrated in the main distribution. Most of the standard libraries also work on Windows.</p>
<p>There is also an unmaintained "tiny" runtime environment that allows Go programs to run on bare hardware.<sup id="cite_ref-16" class="reference"><a href="#cite_note-16"><span>[</span>17<span>]</span></a></sup></p>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=7" title="Edit section: Examples">edit</a>]</span> <span class="mw-headline" id="Examples">Examples</span></h2>
<h3><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=8" title="Edit section: Hello world">edit</a>]</span> <span class="mw-headline" id="Hello_world">Hello world</span></h3>
<p>The following is a <a href="/wiki/Hello_world_program" title="Hello world program">Hello world program</a> in Go:</p>
<div dir="ltr" class="mw-geshi mw-code mw-content-ltr">
<div class="go source-go">
<pre class="de1">
<span class="kw1">package</span> main
<span class="kw1">import</span> <span class="st0">"fmt"</span>
<span class="kw4">func</span> main<span class="sy1">()</span> <span class="sy1">{</span>
fmt<span class="sy3">.</span>Println<span class="sy1">(</span><span class="st0">"Hello, World"</span><span class="sy1">)</span>
<span class="sy1">}</span>
</pre></div>
</div>
<p>Go's automatic <a href="/wiki/Semicolon" title="Semicolon">semicolon</a> insertion feature requires that opening braces not be placed on their own lines, and this is thus the preferred <a href="/wiki/Brace_style" title="Brace style" class="mw-redirect">brace style</a>; the examples shown comply with this style.<sup id="cite_ref-17" class="reference"><a href="#cite_note-17"><span>[</span>18<span>]</span></a></sup></p>
<h3><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=9" title="Edit section: Echo">edit</a>]</span> <span class="mw-headline" id="Echo">Echo</span></h3>
<p>Example illustrating how to write a program like the Unix <a href="/wiki/Echo_(command)" title="Echo (command)">echo command</a> in Go:<sup id="cite_ref-18" class="reference"><a href="#cite_note-18"><span>[</span>19<span>]</span></a></sup></p>
<div dir="ltr" class="mw-geshi mw-code mw-content-ltr">
<div class="go source-go">
<pre class="de1">
<span class="kw1">package</span> main
<span class="kw1">import</span> <span class="sy1">(</span>
<span class="st0">"os"</span>
<span class="st0">"flag"</span> <span class="co1">// command line option parser</span>
<span class="sy1">)</span>
<span class="kw1">var</span> omitNewline <span class="sy2">=</span> flag<span class="sy3">.</span>Bool<span class="sy1">(</span><span class="st0">"n"</span><span class="sy1">,</span> <span class="kw2">false</span><span class="sy1">,</span> <span class="st0">"don't print final newline"</span><span class="sy1">)</span>
<span class="kw1">const</span> <span class="sy1">(</span>
Space <span class="sy2">=</span> <span class="st0">" "</span>
Newline <span class="sy2">=</span> <span class="st0">"<span class="es1">\n</span>"</span>
<span class="sy1">)</span>
<span class="kw4">func</span> main<span class="sy1">()</span> <span class="sy1">{</span>
flag<span class="sy3">.</span>Parse<span class="sy1">()</span> <span class="co1">// Scans the arg list and sets up flags</span>
<span class="kw1">var</span> s <span class="kw4">string</span>
<span class="kw1">for</span> <span class="nu2">i</span> <span class="sy2">:=</span> <span class="nu0">0</span><span class="sy1">;</span> <span class="nu2">i</span> < flag<span class="sy3">.</span>NArg<span class="sy1">();</span> <span class="nu2">i</span><span class="sy2">++</span> <span class="sy1">{</span>
<span class="kw1">if</span> <span class="nu2">i</span> > <span class="nu0">0</span> <span class="sy1">{</span>
s <span class="sy2">+=</span> Space
<span class="sy1">}</span>
s <span class="sy2">+=</span> flag<span class="sy3">.</span>Arg<span class="sy1">(</span><span class="nu2">i</span><span class="sy1">)</span>
<span class="sy1">}</span>
<span class="kw1">if</span> <span class="sy3">!*</span>omitNewline <span class="sy1">{</span>
s <span class="sy2">+=</span> Newline
<span class="sy1">}</span>
os<span class="sy3">.</span>Stdout<span class="sy3">.</span>WriteString<span class="sy1">(</span>s<span class="sy1">)</span>
<span class="sy1">}</span>
</pre></div>
</div>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=10" title="Edit section: Reception">edit</a>]</span> <span class="mw-headline" id="Reception">Reception</span></h2>
<p>Go's initial release led to much discussion.</p>
<p>Michele Simionato wrote in an article for artima.com:<sup id="cite_ref-19" class="reference"><a href="#cite_note-19"><span>[</span>20<span>]</span></a></sup></p>
<blockquote class="templatequote">
<div class="Bug6200">Here I just wanted to point out the design choices about interfaces and inheritance. Such ideas are not new and it is a shame that no popular language has followed such particular route in the design space. I hope Go will become popular; if not, I hope such ideas will finally enter in a popular language, we are already 10 or 20 years too late :-(</div>
</blockquote>
<p><a href="/wiki/Dave_Astels" title="Dave Astels">Dave Astels</a> at <a href="/wiki/Engine_Yard" title="Engine Yard">Engine Yard</a> wrote:<sup id="cite_ref-20" class="reference"><a href="#cite_note-20"><span>[</span>21<span>]</span></a></sup></p>
<blockquote class="templatequote">
<div class="Bug6200">Go is extremely easy to dive into. There are a minimal number of fundamental language concepts and the <a href="/wiki/Syntax_(programming_languages)" title="Syntax (programming languages)">syntax</a> is clean and designed to be clear and unambiguous. Go is still experimental and still a little rough around the edges.</div>
</blockquote>
<p><i><a href="/wiki/Ars_Technica" title="Ars Technica">Ars Technica</a></i> interviewed Rob Pike, one of the authors of Go, and asked why a new language was needed. He replied that:<sup id="cite_ref-ars_21-0" class="reference"><a href="#cite_note-ars-21"><span>[</span>22<span>]</span></a></sup></p>
<blockquote class="templatequote">
<div class="Bug6200">It wasn't enough to just add features to existing programming languages, because sometimes you can get more in the long run by taking things away. They wanted to start from scratch and rethink everything. ... [But they did not want] to deviate too much from what developers already knew because they wanted to avoid alienating Go's target audience.</div>
</blockquote>
<p>Go was in 15th place on the <a href="/wiki/TIOBE_Programming_Community_Index" title="TIOBE Programming Community Index" class="mw-redirect">TIOBE Programming Community Index</a> of programming language popularity in its first year, 2009,<sup class="Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources from May 2012">citation needed</span></a></i>]</sup> surpassing established languages like <a href="/wiki/Pascal_(programming_language)" title="Pascal (programming language)">Pascal</a>. As of March 2012<sup class="plainlinks noprint asof-tag update" style="display:none;"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Go_(programming_language)&action=edit">[update]</a></sup>, it ranked 66th in the index.<sup id="cite_ref-22" class="reference"><a href="#cite_note-22"><span>[</span>23<span>]</span></a></sup></p>
<p><a href="/wiki/Bruce_Eckel" title="Bruce Eckel">Bruce Eckel</a> stated:<sup id="cite_ref-23" class="reference"><a href="#cite_note-23"><span>[</span>24<span>]</span></a></sup></p>
<blockquote class="templatequote">
<div class="Bug6200">The complexity of <a href="/wiki/C%2B%2B" title="C++">C++</a> (even more complexity has been added in the new C++), and the resulting impact on productivity, is no longer justified. All the hoops that the C++ programmer had to jump through in order to use a C-compatible language make no sense anymore -- they're just a waste of time and effort. Now, Go makes much more sense for the class of problems that C++ was originally intended to solve.</div>
</blockquote>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=11" title="Edit section: Naming dispute">edit</a>]</span> <span class="mw-headline" id="Naming_dispute">Naming dispute</span></h2>
<p>On the day of the general release of the language, Francis McCabe, developer of the <a href="/wiki/Go!_(programming_language)" title="Go! (programming language)">Go! programming language</a> (note the <a href="/wiki/Exclamation_point" title="Exclamation point" class="mw-redirect">exclamation point</a>), requested a name change of Google's language to prevent confusion with his language.<sup id="cite_ref-infoweek_24-0" class="reference"><a href="#cite_note-infoweek-24"><span>[</span>25<span>]</span></a></sup> The issue was closed by a Google developer on 12 October 2010 with the custom status "Unfortunate", with a comment that "there are many computing products and services named Go. In the 11 months since our release, there has been minimal confusion of the two languages."<sup id="cite_ref-25" class="reference"><a href="#cite_note-25"><span>[</span>26<span>]</span></a></sup></p>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=12" title="Edit section: See also">edit</a>]</span> <span class="mw-headline" id="See_also">See also</span></h2>
<ul>
<li><a href="/wiki/Comparison_of_programming_languages" title="Comparison of programming languages">Comparison of programming languages</a></li>
</ul>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=13" title="Edit section: References">edit</a>]</span> <span class="mw-headline" id="References">References</span></h2>
<div class="dablink">This article incorporates material from the <a rel="nofollow" class="external text" href="http://golang.org/doc/go_tutorial.html">official Go tutorial</a>, which is licensed under the Creative Commons Attribution 3.0 license.</div>
<div class="reflist references-column-count references-column-count-2" style="-moz-column-count: 2; -webkit-column-count: 2; column-count: 2; list-style-type: decimal;">
<ol class="references">
<li id="cite_note-0"><span class="mw-cite-backlink"><b><a href="#cite_ref-0">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="https://groups.google.com/forum/#!msg/golang-announce/9-f_fnXNDzw/MiM3tk0iyjYJ">"golang-announce: go1.0.2 released"</a><span class="printonly">. <a rel="nofollow" class="external free" href="https://groups.google.com/forum/#!msg/golang-announce/9-f_fnXNDzw/MiM3tk0iyjYJ">https://groups.google.com/forum/#!msg/golang-announce/9-f_fnXNDzw/MiM3tk0iyjYJ</a></span><span class="reference-accessdate">. Retrieved 14 June 2012</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=golang-announce%3A+go1.0.2+released&rft.atitle=&rft_id=https%3A%2F%2Fgroups.google.com%2Fforum%2F%23%21msg%2Fgolang-announce%2F9-f_fnXNDzw%2FMiM3tk0iyjYJ&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-langfaq-1"><span class="mw-cite-backlink">^ <a href="#cite_ref-langfaq_1-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-langfaq_1-1"><sup><i><b>b</b></i></sup></a> <a href="#cite_ref-langfaq_1-2"><sup><i><b>c</b></i></sup></a> <a href="#cite_ref-langfaq_1-3"><sup><i><b>d</b></i></sup></a></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://golang.org/doc/go_faq.html">"Language Design FAQ"</a>. <i>golang.org</i>. 16 January 2010<span class="printonly">. <a rel="nofollow" class="external free" href="http://golang.org/doc/go_faq.html">http://golang.org/doc/go_faq.html</a></span><span class="reference-accessdate">. Retrieved 27 February 2010</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Language+Design+FAQ&rft.atitle=golang.org&rft.date=16+January+2010&rft_id=http%3A%2F%2Fgolang.org%2Fdoc%2Fgo_faq.html&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-2">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://go-lang.cat-v.org/os-ports">"Go Porting Efforts"</a>. <i>Go Language Resources</i>. cat-v. 12 January 2010<span class="printonly">. <a rel="nofollow" class="external free" href="http://go-lang.cat-v.org/os-ports">http://go-lang.cat-v.org/os-ports</a></span><span class="reference-accessdate">. Retrieved 18 January 2010</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Go+Porting+Efforts&rft.atitle=Go+Language+Resources&rft.date=12+January+2010&rft.pub=cat-v&rft_id=http%3A%2F%2Fgo-lang.cat-v.org%2Fos-ports&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-3">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://golang.org/LICENSE">"Text file LICENSE"</a><span class="printonly">. <a rel="nofollow" class="external free" href="http://golang.org/LICENSE">http://golang.org/LICENSE</a></span><span class="reference-accessdate">. Retrieved 27 January 2011</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Text+file+LICENSE&rft.atitle=&rft_id=http%3A%2F%2Fgolang.org%2FLICENSE&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://code.google.com/p/go/source/browse/PATENTS">"Additional IP Rights Grant"</a><span class="printonly">. <a rel="nofollow" class="external free" href="http://code.google.com/p/go/source/browse/PATENTS">http://code.google.com/p/go/source/browse/PATENTS</a></span><span class="reference-accessdate">. Retrieved 26 July 2012</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Additional+IP+Rights+Grant&rft.atitle=&rft_id=http%3A%2F%2Fcode.google.com%2Fp%2Fgo%2Fsource%2Fbrowse%2FPATENTS&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><span class="citation news">Kincaid, Jason (10 November 2009). <a rel="nofollow" class="external text" href="http://www.techcrunch.com/2009/11/10/google-go-language/">"Google’s Go: A New Programming Language That’s Python Meets C++"</a>. <i>TechCrunch</i><span class="printonly">. <a rel="nofollow" class="external free" href="http://www.techcrunch.com/2009/11/10/google-go-language/">http://www.techcrunch.com/2009/11/10/google-go-language/</a></span><span class="reference-accessdate">. Retrieved 18 January 2010</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.atitle=Google%E2%80%99s+Go%3A+A+New+Programming+Language+That%E2%80%99s+Python+Meets+C%2B%2B&rft.jtitle=TechCrunch&rft.aulast=Kincaid&rft.aufirst=Jason&rft.au=Kincaid%2C%26%2332%3BJason&rft.date=10+November+2009&rft_id=http%3A%2F%2Fwww.techcrunch.com%2F2009%2F11%2F10%2Fgoogle-go-language%2F&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-register-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-register_6-0">^</a></b></span> <span class="reference-text"><span class="citation news">Metz, Cade (20 May 2010). <a rel="nofollow" class="external text" href="http://www.theregister.co.uk/2010/05/20/go_in_production_at_google/">"Google programming Frankenstein is a Go"</a>. <i><a href="/wiki/The_Register" title="The Register">The Register</a></i><span class="printonly">. <a rel="nofollow" class="external free" href="http://www.theregister.co.uk/2010/05/20/go_in_production_at_google/">http://www.theregister.co.uk/2010/05/20/go_in_production_at_google/</a></span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&rft.genre=article&rft.atitle=Google+programming+Frankenstein+is+a+Go&rft.jtitle=%5B%5BThe+Register%5D%5D&rft.aulast=Metz&rft.aufirst=Cade&rft.au=Metz%2C%26%2332%3BCade&rft.date=20+May+2010&rft_id=http%3A%2F%2Fwww.theregister.co.uk%2F2010%2F05%2F20%2Fgo_in_production_at_google%2F&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://golang.org/doc/install.html#tmp_33">"Installing Go"</a>. <i>golang.org</i>. The Go Authors. 11 June 2010<span class="printonly">. <a rel="nofollow" class="external free" href="http://golang.org/doc/install.html#tmp_33">http://golang.org/doc/install.html#tmp_33</a></span><span class="reference-accessdate">. Retrieved 11 June 2010</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Installing+Go&rft.atitle=golang.org&rft.date=11+June+2010&rft.pub=The+Go+Authors&rft_id=http%3A%2F%2Fgolang.org%2Fdoc%2Finstall.html%23tmp_33&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-go_lang_video_2009-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-go_lang_video_2009_8-0">^</a></b></span> <span class="reference-text"><span class="citation web">Pike, Rob. <a rel="nofollow" class="external text" href="http://www.youtube.com/watch?v=rKnDgT73v8s&feature=related">"The Go Programming Language"</a>. YouTube<span class="printonly">. <a rel="nofollow" class="external free" href="http://www.youtube.com/watch?v=rKnDgT73v8s&feature=related">http://www.youtube.com/watch?v=rKnDgT73v8s&feature=related</a></span><span class="reference-accessdate">. Retrieved 1 Jul 2011</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=The+Go+Programming+Language&rft.atitle=&rft.aulast=Pike&rft.aufirst=Rob&rft.au=Pike%2C%26%2332%3BRob&rft.pub=YouTube&rft_id=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DrKnDgT73v8s%26feature%3Drelated&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-techtalk-compiling-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-techtalk-compiling_9-0">^</a></b></span> <span class="reference-text"><span class="citation video"><a href="/wiki/Rob_Pike" title="Rob Pike">Rob Pike</a> (10 November 2009) (flv). <a rel="nofollow" class="external text" href="http://www.youtube.com/watch?v=rKnDgT73v8s#t=8m53"><i>The Go Programming Language</i></a> (Tech talk). Google. Event occurs at 8:53<span class="printonly">. <a rel="nofollow" class="external free" href="http://www.youtube.com/watch?v=rKnDgT73v8s#t=8m53">http://www.youtube.com/watch?v=rKnDgT73v8s#t=8m53</a></span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=The+Go+Programming+Language&rft.aulast=%5B%5BRob+Pike%5D%5D&rft.au=%5B%5BRob+Pike%5D%5D&rft.date=10+November+2009&rft.pages=Event+occurs+at+8%3A53&rft.pub=Google&rft_id=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DrKnDgT73v8s%23t%3D8m53&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-memmodel-10"><span class="mw-cite-backlink">^ <a href="#cite_ref-memmodel_10-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-memmodel_10-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://golang.org/doc/go_mem.html">"The Go Memory Model"</a>. Google<span class="printonly">. <a rel="nofollow" class="external free" href="http://golang.org/doc/go_mem.html">http://golang.org/doc/go_mem.html</a></span><span class="reference-accessdate">. Retrieved 5 January 2011</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=The+Go+Memory+Model&rft.atitle=&rft.pub=Google&rft_id=http%3A%2F%2Fgolang.org%2Fdoc%2Fgo_mem.html&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://golang.org/doc/devel/weekly.html#2010-03-30">Release notes, 30 March 2010</a></span></li>
<li id="cite_note-12"><span class="mw-cite-backlink"><b><a href="#cite_ref-12">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://groups.google.com/group/golang-nuts/browse_thread/thread/1ce5cd050bb973e4">"Proposal for an exception-like mechanism"</a>. <i>golang-nuts</i>. 25 March 2010<span class="printonly">. <a rel="nofollow" class="external free" href="http://groups.google.com/group/golang-nuts/browse_thread/thread/1ce5cd050bb973e4">http://groups.google.com/group/golang-nuts/browse_thread/thread/1ce5cd050bb973e4</a></span><span class="reference-accessdate">. Retrieved 25 March 2010</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Proposal+for+an+exception-like+mechanism&rft.atitle=golang-nuts&rft.date=25+March+2010&rft_id=http%3A%2F%2Fgroups.google.com%2Fgroup%2Fgolang-nuts%2Fbrowse_thread%2Fthread%2F1ce5cd050bb973e4&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-13"><span class="mw-cite-backlink"><b><a href="#cite_ref-13">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://golang.org/doc/go_tutorial.html">"A Tutorial for the Go Programming Language"</a>. <i>The Go Programming Language</i>. Google<span class="printonly">. <a rel="nofollow" class="external free" href="http://golang.org/doc/go_tutorial.html">http://golang.org/doc/go_tutorial.html</a></span><span class="reference-accessdate">. Retrieved 10 March 2010</span>. "In Go the rule about visibility of information is simple: if a name (of a top-level type, function, method, constant or variable, or of a structure field or method) is capitalized, users of the package may see it. Otherwise, the name and hence the thing being named is visible only inside the package in which it is declared."</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=A+Tutorial+for+the+Go+Programming+Language&rft.atitle=The+Go+Programming+Language&rft.pub=Google&rft_id=http%3A%2F%2Fgolang.org%2Fdoc%2Fgo_tutorial.html&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-14"><span class="mw-cite-backlink"><b><a href="#cite_ref-14">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://golang.org/doc/go_faq.html#Implementation">"FAQ: Implementation"</a>. <i>golang.org</i>. 16 January 2010<span class="printonly">. <a rel="nofollow" class="external free" href="http://golang.org/doc/go_faq.html#Implementation">http://golang.org/doc/go_faq.html#Implementation</a></span><span class="reference-accessdate">. Retrieved 18 January 2010</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=FAQ%3A+Implementation&rft.atitle=golang.org&rft.date=16+January+2010&rft_id=http%3A%2F%2Fgolang.org%2Fdoc%2Fgo_faq.html%23Implementation&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-15"><span class="mw-cite-backlink"><b><a href="#cite_ref-15">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://gcc.gnu.org/install/configure.html">"Installing GCC: Configuration"</a><span class="printonly">. <a rel="nofollow" class="external free" href="http://gcc.gnu.org/install/configure.html">http://gcc.gnu.org/install/configure.html</a></span><span class="reference-accessdate">. Retrieved 3 December 2011</span>. "Ada, Go and Objective-C++ are not default languages"</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Installing+GCC%3A+Configuration&rft.atitle=&rft_id=http%3A%2F%2Fgcc.gnu.org%2Finstall%2Fconfigure.html&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-16"><span class="mw-cite-backlink"><b><a href="#cite_ref-16">^</a></b></span> <span class="reference-text"><span class="citation web">Gerrand, Andrew (1 February 2011). <a rel="nofollow" class="external text" href="http://groups.google.com/group/golang-nuts/browse_thread/thread/b877e34723b543a7">"release.2011-02-01"</a>. <i>golang-nuts</i>. <a href="/wiki/Google" title="Google">Google</a><span class="printonly">. <a rel="nofollow" class="external free" href="http://groups.google.com/group/golang-nuts/browse_thread/thread/b877e34723b543a7">http://groups.google.com/group/golang-nuts/browse_thread/thread/b877e34723b543a7</a></span><span class="reference-accessdate">. Retrieved 5 February 2011</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=release.2011-02-01&rft.atitle=golang-nuts&rft.aulast=Gerrand&rft.aufirst=Andrew&rft.au=Gerrand%2C%26%2332%3BAndrew&rft.date=1+February+2011&rft.pub=%5B%5BGoogle%5D%5D&rft_id=http%3A%2F%2Fgroups.google.com%2Fgroup%2Fgolang-nuts%2Fbrowse_thread%2Fthread%2Fb877e34723b543a7&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-17"><span class="mw-cite-backlink"><b><a href="#cite_ref-17">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://golang.org/doc/go_tutorial.html">"A Tutorial for the Go Programming Language"</a>. <i>The Go Programming Language</i>. Google<span class="printonly">. <a rel="nofollow" class="external free" href="http://golang.org/doc/go_tutorial.html">http://golang.org/doc/go_tutorial.html</a></span><span class="reference-accessdate">. Retrieved 10 March 2010</span>. "The one surprise is that it's important to put the opening brace of a construct such as an if statement on the same line as the if; however, if you don't, there are situations that may not compile or may give the wrong result. The language forces the brace style to some extent."</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=A+Tutorial+for+the+Go+Programming+Language&rft.atitle=The+Go+Programming+Language&rft.pub=Google&rft_id=http%3A%2F%2Fgolang.org%2Fdoc%2Fgo_tutorial.html&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-18"><span class="mw-cite-backlink"><b><a href="#cite_ref-18">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://golang.org/doc/go_tutorial.html">"A Tutorial for the Go Programming Language"</a>. <i>golang.org</i>. 16 January 2010<span class="printonly">. <a rel="nofollow" class="external free" href="http://golang.org/doc/go_tutorial.html">http://golang.org/doc/go_tutorial.html</a></span><span class="reference-accessdate">. Retrieved 18 January 2010</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=A+Tutorial+for+the+Go+Programming+Language&rft.atitle=golang.org&rft.date=16+January+2010&rft_id=http%3A%2F%2Fgolang.org%2Fdoc%2Fgo_tutorial.html&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-19"><span class="mw-cite-backlink"><b><a href="#cite_ref-19">^</a></b></span> <span class="reference-text"><span class="citation news">Simionato, Michele (15 November 2009). <a rel="nofollow" class="external text" href="http://www.artima.com/weblogs/viewpost.jsp?thread=274019">"Interfaces vs Inheritance (or, watch out for Go!)"</a>. artima<span class="printonly">. <a rel="nofollow" class="external free" href="http://www.artima.com/weblogs/viewpost.jsp?thread=274019">http://www.artima.com/weblogs/viewpost.jsp?thread=274019</a></span><span class="reference-accessdate">. Retrieved 15 November 2009</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Interfaces+vs+Inheritance+%28or%2C+watch+out+for+Go%21%29&rft.atitle=&rft.aulast=Simionato&rft.aufirst=Michele&rft.au=Simionato%2C%26%2332%3BMichele&rft.date=15+November+2009&rft.pub=artima&rft_id=http%3A%2F%2Fwww.artima.com%2Fweblogs%2Fviewpost.jsp%3Fthread%3D274019&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-20"><span class="mw-cite-backlink"><b><a href="#cite_ref-20">^</a></b></span> <span class="reference-text"><span class="citation news">Astels, Dave (9 November 2009). <a rel="nofollow" class="external text" href="http://www.engineyard.com/blog/2009/ready-set-go/">"Ready, Set, Go!"</a>. engineyard<span class="printonly">. <a rel="nofollow" class="external free" href="http://www.engineyard.com/blog/2009/ready-set-go/">http://www.engineyard.com/blog/2009/ready-set-go/</a></span><span class="reference-accessdate">. Retrieved 9 November 2009</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Ready%2C+Set%2C+Go%21&rft.atitle=&rft.aulast=Astels&rft.aufirst=Dave&rft.au=Astels%2C%26%2332%3BDave&rft.date=9+November+2009&rft.pub=engineyard&rft_id=http%3A%2F%2Fwww.engineyard.com%2Fblog%2F2009%2Fready-set-go%2F&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-ars-21"><span class="mw-cite-backlink"><b><a href="#cite_ref-ars_21-0">^</a></b></span> <span class="reference-text"><span class="citation news">Paul, Ryan (10 November 2009). <a rel="nofollow" class="external text" href="http://arstechnica.com/open-source/news/2009/11/go-new-open-source-programming-language-from-google.ars">"Go: new open source programming language from Google"</a>. Ars Technica<span class="printonly">. <a rel="nofollow" class="external free" href="http://arstechnica.com/open-source/news/2009/11/go-new-open-source-programming-language-from-google.ars">http://arstechnica.com/open-source/news/2009/11/go-new-open-source-programming-language-from-google.ars</a></span><span class="reference-accessdate">. Retrieved 13 November 2009</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Go%3A+new+open+source+programming+language+from+Google&rft.atitle=&rft.aulast=Paul&rft.aufirst=Ryan&rft.au=Paul%2C%26%2332%3BRyan&rft.date=10+November+2009&rft.pub=Ars+Technica&rft_id=http%3A%2F%2Farstechnica.com%2Fopen-source%2Fnews%2F2009%2F11%2Fgo-new-open-source-programming-language-from-google.ars&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-22"><span class="mw-cite-backlink"><b><a href="#cite_ref-22">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://es.scribd.com/doc/89569304/TIOBE-Programming-Community-Index-for-March-2012">"TIOBE Programming Community Index for March 2012"</a>. TIOBE Software. March 2012<span class="printonly">. <a rel="nofollow" class="external free" href="http://es.scribd.com/doc/89569304/TIOBE-Programming-Community-Index-for-March-2012">http://es.scribd.com/doc/89569304/TIOBE-Programming-Community-Index-for-March-2012</a></span><span class="reference-accessdate">. Retrieved 28 April 2012</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=TIOBE+Programming+Community+Index+for+March+2012&rft.atitle=&rft.date=March+2012&rft.pub=TIOBE+Software&rft_id=http%3A%2F%2Fes.scribd.com%2Fdoc%2F89569304%2FTIOBE-Programming-Community-Index-for-March-2012&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-23"><span class="mw-cite-backlink"><b><a href="#cite_ref-23">^</a></b></span> <span class="reference-text"><span class="citation web">Bruce Eckel (27). <a rel="nofollow" class="external text" href="http://www.artima.com/weblogs/viewpost.jsp?thread=333589">"Calling Go from Python via JSON-RPC"</a><span class="printonly">. <a rel="nofollow" class="external free" href="http://www.artima.com/weblogs/viewpost.jsp?thread=333589">http://www.artima.com/weblogs/viewpost.jsp?thread=333589</a></span><span class="reference-accessdate">. Retrieved 29 August 2011</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Calling+Go+from+Python+via+JSON-RPC&rft.atitle=&rft.aulast=Bruce+Eckel&rft.au=Bruce+Eckel&rft.date=27&rft_id=http%3A%2F%2Fwww.artima.com%2Fweblogs%2Fviewpost.jsp%3Fthread%3D333589&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-infoweek-24"><span class="mw-cite-backlink"><b><a href="#cite_ref-infoweek_24-0">^</a></b></span> <span class="reference-text"><span class="citation news">Claburn, Thomas (11 November 2009). <a rel="nofollow" class="external text" href="http://www.informationweek.com/news/software/web_services/showArticle.jhtml?articleID=221601351">"Google 'Go' Name Brings Accusations Of Evil'"</a>. InformationWeek<span class="printonly">. <a rel="nofollow" class="external free" href="http://www.informationweek.com/news/software/web_services/showArticle.jhtml?articleID=221601351">http://www.informationweek.com/news/software/web_services/showArticle.jhtml?articleID=221601351</a></span><span class="reference-accessdate">. Retrieved 18 January 2010</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Google+%27Go%27+Name+Brings+Accusations+Of+Evil%27&rft.atitle=&rft.aulast=Claburn&rft.aufirst=Thomas&rft.au=Claburn%2C%26%2332%3BThomas&rft.date=11+November+2009&rft.pub=InformationWeek&rft_id=http%3A%2F%2Fwww.informationweek.com%2Fnews%2Fsoftware%2Fweb_services%2FshowArticle.jhtml%3FarticleID%3D221601351&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
<li id="cite_note-25"><span class="mw-cite-backlink"><b><a href="#cite_ref-25">^</a></b></span> <span class="reference-text"><span class="citation web"><a rel="nofollow" class="external text" href="http://code.google.com/p/go/issues/detail?id=9">"Issue 9 - go - I have already used the name for *MY* programming language"</a>. <i>Google Code</i>. <a href="/wiki/Google_Inc." title="Google Inc." class="mw-redirect">Google Inc.</a><span class="printonly">. <a rel="nofollow" class="external free" href="http://code.google.com/p/go/issues/detail?id=9">http://code.google.com/p/go/issues/detail?id=9</a></span><span class="reference-accessdate">. Retrieved 12 October 2010</span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Issue+9+-+go+-+I+have+already+used+the+name+for+%2AMY%2A+programming+language&rft.atitle=Google+Code&rft.pub=%5B%5BGoogle+Inc.%5D%5D&rft_id=http%3A%2F%2Fcode.google.com%2Fp%2Fgo%2Fissues%2Fdetail%3Fid%3D9&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></span></li>
</ol>
</div>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=14" title="Edit section: Further reading">edit</a>]</span> <span class="mw-headline" id="Further_reading">Further reading</span></h2>
<ul>
<li><span class="citation book">Chisnall, David (9 May 2012). <a rel="nofollow" class="external text" href="http://www.informit.com/articles/article.aspx?p=1760496">"Common Go Patterns"</a>. <i>The Go Programming Language Phrasebook</i>. <a href="/wiki/Addison-Wesley_Professional" title="Addison-Wesley Professional" class="mw-redirect">Addison-Wesley Professional</a>. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a> <a href="/wiki/Special:BookSources/0-321-81714-1" title="Special:BookSources/0-321-81714-1">0-321-81714-1</a><span class="printonly">. <a rel="nofollow" class="external free" href="http://www.informit.com/articles/article.aspx?p=1760496">http://www.informit.com/articles/article.aspx?p=1760496</a></span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Common+Go+Patterns&rft.atitle=The+Go+Programming+Language+Phrasebook&rft.aulast=Chisnall&rft.aufirst=David&rft.au=Chisnall%2C%26%2332%3BDavid&rft.date=9+May+2012&rft.pub=%5B%5BAddison-Wesley+Professional%5D%5D&rft.isbn=0-321-81714-1&rft_id=http%3A%2F%2Fwww.informit.com%2Farticles%2Farticle.aspx%3Fp%3D1760496&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></li>
<li><span class="citation book">Summerfield, Mark (5 May 2012). <a rel="nofollow" class="external text" href="http://www.informit.com/store/product.aspx?isbn=0321774639"><i>Programming in Go: Creating Applications for the 21st Century</i></a>. <a href="/wiki/Addison-Wesley_Professional" title="Addison-Wesley Professional" class="mw-redirect">Addison-Wesley Professional</a>. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a> <a href="/wiki/Special:BookSources/0-321-77463-9" title="Special:BookSources/0-321-77463-9">0-321-77463-9</a><span class="printonly">. <a rel="nofollow" class="external free" href="http://www.informit.com/store/product.aspx?isbn=0321774639">http://www.informit.com/store/product.aspx?isbn=0321774639</a></span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=book&rft.btitle=Programming+in+Go%3A+Creating+Applications+for+the+21st+Century&rft.aulast=Summerfield&rft.aufirst=Mark&rft.au=Summerfield%2C%26%2332%3BMark&rft.date=5+May+2012&rft.pub=%5B%5BAddison-Wesley+Professional%5D%5D&rft.isbn=0-321-77463-9&rft_id=http%3A%2F%2Fwww.informit.com%2Fstore%2Fproduct.aspx%3Fisbn%3D0321774639&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></li>
</ul>
<h2><span class="editsection">[<a href="/w/index.php?title=Go_(programming_language)&action=edit&section=15" title="Edit section: External links">edit</a>]</span> <span class="mw-headline" id="External_links">External links</span></h2>
<ul>
<li><span class="official website"><a rel="nofollow" class="external text" href="http://golang.org">Official website</a></span></li>
<li><span class="citation web">Pike, Rob (28 April 2010). <a rel="nofollow" class="external text" href="http://www.stanford.edu/class/ee380/Abstracts/100428.html">"Another Go at Language Design"</a>. <i>Stanford EE Computer Systems Colloquium</i>. <a href="/wiki/Stanford_University" title="Stanford University">Stanford University</a><span class="printonly">. <a rel="nofollow" class="external free" href="http://www.stanford.edu/class/ee380/Abstracts/100428.html">http://www.stanford.edu/class/ee380/Abstracts/100428.html</a></span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Another+Go+at+Language+Design&rft.atitle=Stanford+EE+Computer+Systems+Colloquium&rft.aulast=Pike&rft.aufirst=Rob&rft.au=Pike%2C%26%2332%3BRob&rft.date=28+April+2010&rft.pub=%5B%5BStanford+University%5D%5D&rft_id=http%3A%2F%2Fwww.stanford.edu%2Fclass%2Fee380%2FAbstracts%2F100428.html&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span> (<a rel="nofollow" class="external text" href="http://ee380.stanford.edu/cgi-bin/videologger.php?target=100428-ee380-300.asx">video</a>) — A university lecture</li>
<li><span class="citation podcast">Wynn Netherland & Adam Stacoviak (27 November 2009). <a rel="nofollow" class="external text" href="http://thechangelog.com/post/259401776/episode-0-0-3-googles-go-programming-language">"Episode 0.0.3 - Google’s Go Programming Language"</a>. <i>The Changelog</i> (Podcast)<span class="printonly">. <a rel="nofollow" class="external free" href="http://thechangelog.com/post/259401776/episode-0-0-3-googles-go-programming-language">http://thechangelog.com/post/259401776/episode-0-0-3-googles-go-programming-language</a></span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Episode+0.0.3+-+Google%E2%80%99s+Go+Programming+Language&rft.atitle=The+Changelog&rft.aulast=Wynn+Netherland+%26+Adam+Stacoviak&rft.au=Wynn+Netherland+%26+Adam+Stacoviak&rft.date=27+November+2009&rft_id=http%3A%2F%2Fthechangelog.com%2Fpost%2F259401776%2Fepisode-0-0-3-googles-go-programming-language&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span> — Interview with Rob Pike, Tech Lead for the Google Go team</li>
<li><a rel="nofollow" class="external text" href="http://go-lang.cat-v.org/">Go Programming Language Resources</a> (unofficial)</li>
<li><a rel="nofollow" class="external free" href="irc://chat.freenode.net/#go-nuts">irc://chat.freenode.net/#go-nuts</a> – the <a href="/wiki/IRC" title="IRC" class="mw-redirect">IRC</a> channel #go-nuts on <a href="/wiki/Freenode" title="Freenode">freenode</a></li>
<li><span class="citation podcast">Steve Dalton (22 January 2011). <a rel="nofollow" class="external text" href="http://www.codingbynumbers.com/2011/01/coding-by-numbers-episode-20-interview.html">"Episode 20 (Interview with Andrew Gerrand about Go Programming Language)"</a>. <i>Coding By Numbers</i> (Podcast)<span class="printonly">. <a rel="nofollow" class="external free" href="http://www.codingbynumbers.com/2011/01/coding-by-numbers-episode-20-interview.html">http://www.codingbynumbers.com/2011/01/coding-by-numbers-episode-20-interview.html</a></span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Episode+20+%28Interview+with+Andrew+Gerrand+about+Go+Programming+Language%29&rft.atitle=Coding+By+Numbers&rft.aulast=Steve+Dalton&rft.au=Steve+Dalton&rft.date=22+January+2011&rft_id=http%3A%2F%2Fwww.codingbynumbers.com%2F2011%2F01%2Fcoding-by-numbers-episode-20-interview.html&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></li>
<li><span class="citation web">Schuster, Werner (25 February 2011). <a rel="nofollow" class="external text" href="http://www.infoq.com/interviews/pike-google-go">"Rob Pike on Google Go: Concurrency, Type System, Memory Management and GC"</a>. <i>InfoQ</i>. GOTO Conference: C4Media Inc.<span class="printonly">. <a rel="nofollow" class="external free" href="http://www.infoq.com/interviews/pike-google-go">http://www.infoq.com/interviews/pike-google-go</a></span>.</span><span class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&rft.genre=bookitem&rft.btitle=Rob+Pike+on+Google+Go%3A+Concurrency%2C+Type+System%2C+Memory+Management+and+GC&rft.atitle=InfoQ&rft.aulast=Schuster&rft.aufirst=Werner&rft.au=Schuster%2C%26%2332%3BWerner&rft.date=25+February+2011&rft.place=GOTO+Conference&rft.pub=C4Media+Inc.&rft_id=http%3A%2F%2Fwww.infoq.com%2Finterviews%2Fpike-google-go&rfr_id=info:sid/en.wikipedia.org:Go_(programming_language)"><span style="display: none;"> </span></span></li>
</ul>
<table cellspacing="0" class="navbox" style="border-spacing:0;;">
<tr>
<td style="padding:2px;">
<table cellspacing="0" class="nowraplinks hlist collapsible collapsed navbox-inner" style="border-spacing:0;background:transparent;color:inherit;;">
<tr>
<th scope="col" style=";" class="navbox-title" colspan="2">
<div class="noprint plainlinks hlist navbar mini" style="">
<ul>
<li class="nv-view"><a href="/wiki/Template:Google_Inc." title="Template:Google Inc."><span title="View this template" style=";;background:none transparent;border:none;">v</span></a></li>
<li class="nv-talk"><a href="/wiki/Template_talk:Google_Inc." title="Template talk:Google Inc."><span title="Discuss this template" style=";;background:none transparent;border:none;">t</span></a></li>
<li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Google_Inc.&action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;">e</span></a></li>
</ul>
</div>
<div class="" style="font-size:110%;"><a href="/wiki/Google" title="Google">Google Inc.</a></div>
</th>
</tr>
<tr style="height:2px;">
<td></td>
</tr>
<tr>
<td class="navbox-abovebelow" style=";" colspan="2">
<div>
<dl>
<dt>Co-founder & CEO</dt>
<dd><a href="/wiki/Larry_Page" title="Larry Page">Larry Page</a></dd>
<dt>Executive Chairman</dt>
<dd><a href="/wiki/Eric_Schmidt" title="Eric Schmidt">Eric Schmidt</a></dd>
<dt>Co-founder</dt>
<dd><a href="/wiki/Sergey_Brin" title="Sergey Brin">Sergey Brin</a></dd>
</dl>
<dl>
<dt>Other directors</dt>
<dd><a href="/wiki/John_Doerr" title="John Doerr">John Doerr</a></dd>
<dd><a href="/wiki/John_L._Hennessy" title="John L. Hennessy">John L. Hennessy</a></dd>
<dd><a href="/wiki/Ann_Mather" title="Ann Mather">Ann Mather</a></dd>
<dd><a href="/wiki/Paul_Otellini" title="Paul Otellini">Paul Otellini</a></dd>
<dd><a href="/wiki/Ram_Shriram" title="Ram Shriram">Ram Shriram</a></dd>
<dd><a href="/wiki/Shirley_M._Tilghman" title="Shirley M. Tilghman">Shirley M. Tilghman</a></dd>
<dt>Senior Advisor</dt>
<dd><a href="/wiki/Al_Gore" title="Al Gore">Al Gore</a></dd>
<dd><a href="/wiki/Rajen_Sheth" title="Rajen Sheth">Rajen Sheth</a></dd>
</dl>
</div>
</td>
</tr>
<tr style="height:2px;">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Advertising</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Ad_Manager" title="Ad Manager" class="mw-redirect">Ad Manager</a></li>
<li><a href="/wiki/AdMob" title="AdMob">AdMob</a></li>
<li><a href="/wiki/Adscape" title="Adscape">Adscape</a></li>
<li><a href="/wiki/AdSense" title="AdSense">AdSense</a></li>
<li><a href="/wiki/Google_Advertising_Professional" title="Google Advertising Professional" class="mw-redirect">Advertising Professionals</a></li>
<li><a href="/wiki/AdWords" title="AdWords">AdWords</a></li>
<li><a href="/wiki/Google_Analytics" title="Google Analytics">Analytics</a></li>
<li><a href="/wiki/Google_Checkout" title="Google Checkout">Checkout</a></li>
<li><a href="/wiki/DoubleClick" title="DoubleClick">DoubleClick</a></li>
<li><a href="/wiki/Google_Offers" title="Google Offers">Offers</a></li>
<li><a href="/wiki/Google_Wallet" title="Google Wallet">Wallet</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Communication</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Google_Alerts" title="Google Alerts">Alerts</a></li>
<li><a href="/wiki/Google_Calendar" title="Google Calendar">Calendar</a></li>
<li><a href="/wiki/Google_Cloud_Connect" title="Google Cloud Connect">Cloud Connect</a></li>
<li><a href="/wiki/Google_Contacts" title="Google Contacts">Contacts</a></li>
<li><a href="/wiki/Google_Friend_Connect" title="Google Friend Connect">Friend Connect</a></li>
<li><a href="/wiki/Gmail" title="Gmail">Gmail</a>
<ul>
<li><a href="/wiki/History_of_Gmail" title="History of Gmail">history</a></li>
<li><a href="/wiki/Gmail_interface" title="Gmail interface">interface</a></li>
</ul>
</li>
<li><a href="/wiki/Google%2B" title="Google+">Google+</a></li>
<li><a href="/wiki/Google_Groups" title="Google Groups">Groups</a></li>
<li><a href="/wiki/Google_Talk" title="Google Talk">Talk</a></li>
<li><a href="/wiki/Google_Latitude" title="Google Latitude">Latitude</a></li>
<li><a href="/wiki/Orkut" title="Orkut">Orkut</a></li>
<li><a href="/wiki/Google_Questions_and_Answers" title="Google Questions and Answers">Q & A</a></li>
<li><a href="/wiki/Google_Reader" title="Google Reader">Reader</a></li>
<li><a href="/wiki/Google_Sync" title="Google Sync">Sync</a></li>
<li><a href="/wiki/Google_Translate" title="Google Translate">Translate</a></li>
<li><a href="/wiki/Google_Voice" title="Google Voice">Voice</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Software</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Google_Chrome" title="Google Chrome">Chrome</a>
<ul>
<li><a href="/wiki/Chrome_Web_Store" title="Chrome Web Store">Chrome Web Store</a></li>
</ul>
</li>
<li><a href="/wiki/Google_Chrome_OS" title="Google Chrome OS">Chrome OS</a>
<ul>
<li><a href="/wiki/Chromebook" title="Chromebook">Chromebook</a></li>
</ul>
</li>
<li><a href="/wiki/Google_Cloud_Print" title="Google Cloud Print">Cloud Print</a></li>
<li><a href="/wiki/Google_Currents" title="Google Currents">Currents</a></li>
<li><a href="/wiki/Google_Earth" title="Google Earth">Earth</a>
<ul>
<li><a href="/wiki/Google_Sky" title="Google Sky">Sky</a></li>
<li><a href="/wiki/Google_Moon" title="Google Moon">Moon</a></li>
<li><a href="/wiki/Google_Mars" title="Google Mars">Mars</a></li>
</ul>
</li>
<li><a href="/wiki/Google_Gadgets" title="Google Gadgets">Gadgets</a></li>
<li><a href="/wiki/Google_Goggles" title="Google Goggles">Goggles</a></li>
<li><a href="/wiki/Google_IME" title="Google IME">IME</a>
<ul>
<li><a href="/wiki/Google_Pinyin" title="Google Pinyin">Pinyin</a></li>
<li><a href="/wiki/Google_Japanese_Input" title="Google Japanese Input">Japanese</a></li>
</ul>
</li>
<li><a href="/wiki/Picasa" title="Picasa">Picasa</a></li>
<li><a href="/wiki/Google_Refine" title="Google Refine">Refine</a></li>
<li><a href="/wiki/SketchUp" title="SketchUp">SketchUp</a></li>
<li><a href="/wiki/Google_Talk" title="Google Talk">Talk</a></li>
<li><a href="/wiki/Google_Toolbar" title="Google Toolbar">Toolbar</a></li>
<li><a href="/wiki/Google_Pack#Google_Updater" title="Google Pack">Updater</a></li>
<li><a href="/wiki/Urchin_(software)" title="Urchin (software)">Urchin</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;"><a href="/wiki/Google_platform" title="Google platform">Platforms</a></th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Google_Account" title="Google Account">Account</a></li>
<li><a href="/wiki/Android_(operating_system)" title="Android (operating system)">Android</a>
<ul>
<li><a href="/wiki/Google_TV" title="Google TV">Google TV</a></li>
<li><a href="/wiki/Google_Nexus" title="Google Nexus">Google Nexus</a></li>
</ul>
</li>
<li><a href="/wiki/Google_App_Engine" title="Google App Engine">App Engine</a></li>
<li><a href="/wiki/Google_Apps" title="Google Apps">Apps</a>
<ul>
<li><a href="/wiki/Google_Apps_Marketplace" title="Google Apps Marketplace">Marketplace</a></li>
</ul>
</li>
<li><a href="/wiki/Google_Authenticator" title="Google Authenticator">Authenticator</a></li>
<li><a href="/wiki/BigTable" title="BigTable">BigTable</a></li>
<li><a href="/wiki/Google_Body" title="Google Body" class="mw-redirect">Body</a></li>
<li><a href="/wiki/Google_Books" title="Google Books">Books</a></li>
<li><a href="/wiki/Google_Play" title="Google Play">Play</a></li>
<li><a href="/wiki/Caja_project" title="Caja project">Caja</a></li>
<li><a href="/wiki/Google_Compute_Engine" title="Google Compute Engine">Google Compute Engine</a></li>
<li><a href="/wiki/Project_Glass" title="Project Glass">Project Glass</a></li>
<li><a href="/wiki/Google_Custom_Search" title="Google Custom Search">Custom Search</a></li>
<li><a href="/wiki/Dart_(programming_language)" title="Dart (programming language)">Dart</a></li>
<li><a href="/wiki/Google_Earth_Engine" title="Google Earth Engine">Earth Engine</a></li>
<li><strong class="selflink">Go</strong></li>
<li><a href="/wiki/Google_File_System" title="Google File System">GFS</a></li>
<li><a href="/wiki/Google_Native_Client" title="Google Native Client">Native Client</a></li>
<li><a href="/wiki/OpenSocial" title="OpenSocial">OpenSocial</a></li>
<li><a href="/wiki/Google_Public_DNS" title="Google Public DNS">Public DNS</a></li>
<li><a href="/wiki/Google_Wallet" title="Google Wallet">Wallet</a></li>
<li><a href="/wiki/Google_Wave_Federation_Protocol" title="Google Wave Federation Protocol">Wave</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Development tools</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Google_AJAX_APIs" title="Google AJAX APIs">AJAX APIs</a></li>
<li><a href="/wiki/App_Inventor" title="App Inventor" class="mw-redirect">App Inventor</a></li>
<li><a href="/wiki/AtGoogleTalks" title="AtGoogleTalks">AtGoogleTalks</a></li>
<li><a href="/wiki/Google_Closure_Tools" title="Google Closure Tools">Closure Tools</a></li>
<li><a href="/wiki/Google_Code" title="Google Code">Code</a></li>
<li><a href="/wiki/Google_Gadgets_API" title="Google Gadgets API">Gadgets API</a></li>
<li><a href="/wiki/GData" title="GData">GData</a></li>
<li><a href="/wiki/Googlebot" title="Googlebot">Googlebot</a></li>
<li><a href="/wiki/Google_Guice" title="Google Guice">Guice</a></li>
<li><a href="/wiki/Google_Web_Server" title="Google Web Server" class="mw-redirect">GWS</a></li>
<li><a href="/wiki/Keyhole_Markup_Language" title="Keyhole Markup Language">KML</a></li>
<li><a href="/wiki/MapReduce" title="MapReduce">MapReduce</a></li>
<li><a href="/wiki/SketchUp_Ruby" title="SketchUp Ruby" class="mw-redirect">SketchUp Ruby</a></li>
<li><a href="/wiki/Sitemaps" title="Sitemaps">Sitemaps</a></li>
<li><a href="/wiki/Google_Summer_of_Code" title="Google Summer of Code">Summer of Code</a></li>
<li><a href="/wiki/Google_Web_Toolkit" title="Google Web Toolkit">Web Toolkit</a></li>
<li><a href="/wiki/Google_Website_Optimizer" title="Google Website Optimizer">Website Optimizer</a></li>
<li><a href="/wiki/Google_Swiffy" title="Google Swiffy">Swiffy</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Publishing</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Google_3D_Warehouse" title="Google 3D Warehouse" class="mw-redirect">Google 3D Warehouse</a></li>
<li><a href="/wiki/Blogger_(service)" title="Blogger (service)">Blogger</a></li>
<li><a href="/wiki/Google_Bookmarks" title="Google Bookmarks">Bookmarks</a></li>
<li><a href="/wiki/Google_Docs" title="Google Docs">Docs</a></li>
<li><a href="/wiki/Google_Drive" title="Google Drive">Drive</a></li>
<li><a href="/wiki/FeedBurner" title="FeedBurner">FeedBurner</a></li>
<li><a href="/wiki/IGoogle" title="IGoogle">iGoogle</a></li>
<li><a href="/wiki/Knol" title="Knol">Knol</a></li>
<li><a href="/wiki/Google_Map_Maker" title="Google Map Maker">Map Maker</a></li>
<li><a href="/wiki/Panoramio" title="Panoramio">Panoramio</a></li>
<li><a href="/wiki/Picasa#Picasa_Web_Albums" title="Picasa">Picasa Web Albums</a></li>
<li><a href="/wiki/Google_Sites" title="Google Sites">Sites (JotSpot)</a></li>
<li><a href="/wiki/YouTube" title="YouTube">YouTube</a></li>
<li><a href="/wiki/Zagat" title="Zagat">Zagat</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;"><a href="/wiki/Google_Search" title="Google Search">Search</a> (<a href="/wiki/PageRank" title="PageRank">PageRank</a>)</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Google_Search_Appliance" title="Google Search Appliance">Appliance</a></li>
<li><a href="/wiki/Google_Audio_Indexing" title="Google Audio Indexing">Audio</a></li>
<li><a href="/wiki/Google_Books" title="Google Books">Books</a>
<ul>
<li><a href="/wiki/Google_Books_Library_Project" title="Google Books Library Project">Library Project</a></li>
<li><a href="/wiki/Google_eBooks" title="Google eBooks">eBooks</a></li>
</ul>
</li>
<li><a href="/wiki/Google_Finance" title="Google Finance">Finance</a></li>
<li><a href="/wiki/Google_Images" title="Google Images">Images</a></li>
<li><a href="/wiki/Google_Maps" title="Google Maps">Maps</a>
<ul>
<li><a href="/wiki/Google_Street_View" title="Google Street View">Street View</a>
<ul>
<li><a href="/wiki/Timeline_of_Google_Street_View" title="Timeline of Google Street View">Timeline</a></li>
<li><a href="/wiki/Google_Street_View_privacy_concerns" title="Google Street View privacy concerns">Privacy concerns</a></li>
<li><a href="/wiki/Competition_of_Google_Street_View" title="Competition of Google Street View">Competition</a></li>
<li><a href="/wiki/Locations_of_Google_Street_View" title="Locations of Google Street View">Locations</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="/wiki/Google_News" title="Google News">News</a></li>
<li><a href="/wiki/Google_Patents" title="Google Patents">Patents</a></li>
<li><a href="/wiki/Google_Scholar" title="Google Scholar">Scholar</a></li>
<li><a href="/wiki/Google_Shopping" title="Google Shopping">Shopping</a></li>
<li><a href="/wiki/Google_Groups" title="Google Groups">Usenet</a></li>
<li><a href="/wiki/Google_Videos" title="Google Videos">Videos</a></li>
<li><a href="/wiki/Google_Search" title="Google Search">Web Search</a>
<ul>
<li><a href="/wiki/Google_Web_History" title="Google Web History">History</a></li>
<li><a href="/wiki/Google_Personalized_Search" title="Google Personalized Search">Personalized</a></li>
<li><a href="/wiki/Google_Real-Time_Search" title="Google Real-Time Search">Real-Time</a></li>
<li><a href="/wiki/Instant_Search" title="Instant Search" class="mw-redirect">Instant Search</a></li>
<li><a href="/wiki/SafeSearch" title="SafeSearch">SafeSearch</a></li>
</ul>
</li>
<li>Analysis: <a href="/wiki/Google_Insights_for_Search" title="Google Insights for Search">Insights for Search</a></li>
<li><a href="/wiki/Google_Trends" title="Google Trends">Trends</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;"><a href="/wiki/List_of_Google_products#Discontinued_products_and_services" title="List of Google products">Discontinued</a></th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Aardvark_(search_engine)" title="Aardvark (search engine)">Aardvark</a></li>
<li><a href="/wiki/Google_Answers" title="Google Answers">Answers</a></li>
<li><a href="/wiki/Google_Browser_Sync" title="Google Browser Sync">Browser Sync</a></li>
<li><a href="/wiki/Google_Base" title="Google Base">Base</a></li>
<li><a href="/wiki/Google_Buzz" title="Google Buzz">Buzz</a></li>
<li><a href="/wiki/AdWords#Google_Click-to-Call" title="AdWords">Click-to-Call</a></li>
<li><a href="/wiki/Google_Code_Search" title="Google Code Search">Code Search</a></li>
<li><a href="/wiki/Google_Desktop" title="Google Desktop">Desktop</a></li>
<li><a href="/wiki/Google_Dictionary" title="Google Dictionary">Dictionary</a></li>
<li><a href="/wiki/Dodgeball_(service)" title="Dodgeball (service)">Dodgeball</a></li>
<li><a href="/wiki/Google_Fast_Flip" title="Google Fast Flip">Fast Flip</a></li>
<li><a href="/wiki/Gears_(software)" title="Gears (software)">Gears</a></li>
<li><a href="/wiki/GOOG-411" title="GOOG-411">GOOG-411</a></li>
<li><a href="/wiki/Jaiku" title="Jaiku">Jaiku</a></li>
<li><a href="/wiki/Google_Health" title="Google Health">Health</a></li>
<li><a href="/wiki/Google_Image_Labeler" title="Google Image Labeler">Image Labeler</a></li>
<li><a href="/wiki/Google_Labs" title="Google Labs">Labs</a></li>
<li><a href="/wiki/Google_Lively" title="Google Lively">Lively</a></li>
<li><a href="/wiki/Google_Mashup_Editor" title="Google Mashup Editor">Mashup Editor</a></li>
<li><a href="/wiki/Google_Notebook" title="Google Notebook">Notebook</a></li>
<li><a href="/wiki/Google_Pack" title="Google Pack">Pack</a></li>
<li><a href="/wiki/Google_Page_Creator" title="Google Page Creator">Page Creator</a></li>
<li><a href="/wiki/Picnik" title="Picnik">Picnik</a></li>
<li><a href="/wiki/Google_PowerMeter" title="Google PowerMeter">PowerMeter</a></li>
<li><a href="/wiki/Google_SearchWiki" title="Google SearchWiki">SearchWiki</a></li>
<li><a href="/wiki/Google_Sidewiki" title="Google Sidewiki">Sidewiki</a></li>
<li><a href="/wiki/Slide.com" title="Slide.com">Slide</a></li>
<li><a href="/wiki/Google_Squared" title="Google Squared">Google Squared</a></li>
<li><a href="/wiki/Google_Video_Marketplace" title="Google Video Marketplace">Video Marketplace</a></li>
<li><a href="/wiki/Apache_Wave" title="Apache Wave">Wave</a></li>
<li><a href="/wiki/Google_Web_Accelerator" title="Google Web Accelerator">Web Accelerator</a></li>
<li><a href="/wiki/Google_X" title="Google X">Google X</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;"><a href="/wiki/Category:Google" title="Category:Google">Related</a></th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/List_of_acquisitions_by_Google" title="List of acquisitions by Google" class="mw-redirect">Acquisitions</a></li>
<li><a href="/wiki/Google_AI_Challenge" title="Google AI Challenge" class="mw-redirect">AI Challenge</a></li>
<li><a href="/wiki/Google_Art_Project" title="Google Art Project">Art Project</a></li>
<li><a href="/wiki/Google_bomb" title="Google bomb">Bomb</a></li>
<li><a href="/wiki/Criticism_of_Google" title="Criticism of Google">Criticism</a></li>
<li><a href="/wiki/List_of_Google_domains" title="List of Google domains">Domains</a></li>
<li><a href="/wiki/Google_driverless_car" title="Google driverless car">Driverless car</a></li>
<li><a href="/wiki/Google_Fiber" title="Google Fiber">Fiber</a></li>
<li><a href="/wiki/Google.org#Google_Foundation" title="Google.org">Foundation</a></li>
<li><a href="/wiki/Google_China" title="Google China">Google China</a></li>
<li><a href="/wiki/Googlization" title="Googlization">Googlization</a></li>
<li><a href="/wiki/Google_Grants" title="Google Grants">Grants</a></li>
<li><a href="/wiki/Google.org" title="Google.org">Google.org</a></li>
<li><a href="/wiki/Googleplex" title="Googleplex">Googleplex</a></li>
<li><a href="/wiki/History_of_Google" title="History of Google">History</a></li>
<li><a href="/wiki/List_of_Google%27s_hoaxes_and_easter_eggs" title="List of Google's hoaxes and easter eggs">Hoaxes</a></li>
<li><a href="/wiki/Google_Search#.22I.27m_Feeling_Lucky.22" title="Google Search">I'm Feeling Lucky</a></li>
<li><a href="/wiki/Google_I/O" title="Google I/O">I/O</a></li>
<li><a href="/wiki/Google_logo" title="Google logo">Logo</a>
<ul>
<li><a href="/wiki/List_of_Google_Doodles_(1998%E2%80%932009)" title="List of Google Doodles (1998–2009)">1998–2009</a></li>
<li><a href="/wiki/List_of_Google_Doodles_in_2010" title="List of Google Doodles in 2010">2010</a></li>
<li><a href="/wiki/List_of_Google_Doodles_in_2011" title="List of Google Doodles in 2011">2011</a></li>
<li><a href="/wiki/List_of_Google_Doodles_in_2012" title="List of Google Doodles in 2012">2012</a></li>
</ul>
</li>
<li><a href="/wiki/Google_Lunar_X_Prize" title="Google Lunar X Prize">Lunar X Prize</a></li>
<li><a href="/wiki/Monopoly_City_Streets" title="Monopoly City Streets">Monopoly City Streets</a></li>
<li><a href="/wiki/Motorola_Mobility" title="Motorola Mobility">Motorola Mobility</a></li>
<li><a href="/wiki/List_of_Google_products" title="List of Google products">Products</a></li>
<li><a href="/wiki/Google_Science_Fair" title="Google Science Fair">Science Fair</a></li>
<li><a href="/wiki/Google_Searchology" title="Google Searchology">Searchology</a></li>
<li><a href="/wiki/Unity_(cable_system)" title="Unity (cable system)">Unity</a></li>
<li><a href="/wiki/Google_Ventures" title="Google Ventures">Ventures</a></li>
<li><a href="/wiki/Google_WiFi" title="Google WiFi">WiFi</a></li>
<li><a href="/wiki/Google_Data_Liberation_Front" title="Google Data Liberation Front">Data Liberation</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px;">
<td></td>
</tr>
<tr>
<td class="navbox-abovebelow" style=";" colspan="2">
<div>
<ul>
<li><b><a href="/wiki/History_of_Google" title="History of Google">History of Google</a></b></li>
<li><b>Motto</b>: <a href="/wiki/Don%27t_be_evil" title="Don't be evil">Don't be evil</a></li>
</ul>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing="0" class="navbox" style="border-spacing:0;;">
<tr>
<td style="padding:2px;">
<table cellspacing="0" class="nowraplinks hlist collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;;">
<tr>
<th scope="col" style=";" class="navbox-title" colspan="2">
<div class="noprint plainlinks hlist navbar mini" style="">
<ul>
<li class="nv-view"><a href="/wiki/Template:Rob_Pike_navbox" title="Template:Rob Pike navbox"><span title="View this template" style=";;background:none transparent;border:none;">v</span></a></li>
<li class="nv-talk"><a href="/w/index.php?title=Template_talk:Rob_Pike_navbox&action=edit&redlink=1" class="new" title="Template talk:Rob Pike navbox (page does not exist)"><span title="Discuss this template" style=";;background:none transparent;border:none;">t</span></a></li>
<li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Rob_Pike_navbox&action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;">e</span></a></li>
</ul>
</div>
<div class="" style="font-size:110%;"><a href="/wiki/Rob_Pike" title="Rob Pike">Rob Pike</a></div>
</th>
</tr>
<tr style="height:2px;">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Operating systems</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Plan_9_from_Bell_Labs" title="Plan 9 from Bell Labs">Plan 9 from Bell Labs</a></li>
<li><a href="/wiki/Inferno_(operating_system)" title="Inferno (operating system)">Inferno</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Programming languages</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Newsqueak" title="Newsqueak">Newsqueak</a></li>
<li><a href="/wiki/Limbo_(programming_language)" title="Limbo (programming language)">Limbo</a></li>
<li><strong class="selflink">Go</strong></li>
<li><a href="/wiki/Sawzall_(programming_language)" title="Sawzall (programming language)">Sawzall</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Software</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Acme_(text_editor)" title="Acme (text editor)">acme</a></li>
<li><a href="/wiki/Blit_(computer_terminal)" title="Blit (computer terminal)">Blit</a></li>
<li><a href="/wiki/Sam_(text_editor)" title="Sam (text editor)">sam</a></li>
<li><a href="/wiki/Rio_(windowing_system)" title="Rio (windowing system)">rio</a></li>
<li><a href="/wiki/8%C2%BD_(Plan_9)" title="8½ (Plan 9)">8½</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Publications</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<div style="padding:0em 0.25em">
<ul>
<li><i><a href="/wiki/The_Practice_of_Programming" title="The Practice of Programming">The Practice of Programming</a></i></li>
<li><i><a href="/wiki/The_Unix_Programming_Environment" title="The Unix Programming Environment">The Unix Programming Environment</a></i></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Other</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Ren%C3%A9e_French" title="Renée French">Renée French</a></li>
<li><a href="/wiki/Mark_V_Shaney" title="Mark V Shaney">Mark V Shaney</a></li>
<li><a href="/wiki/UTF-8" title="UTF-8">UTF-8</a></li>
</ul>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing="0" class="navbox" style="border-spacing:0;;">
<tr>
<td style="padding:2px;">
<table cellspacing="0" class="nowraplinks hlist collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;;">
<tr>
<th scope="col" style=";" class="navbox-title" colspan="2">
<div class="noprint plainlinks hlist navbar mini" style="">
<ul>
<li class="nv-view"><a href="/wiki/Template:Ken_Thompson_navbox" title="Template:Ken Thompson navbox"><span title="View this template" style=";;background:none transparent;border:none;">v</span></a></li>
<li class="nv-talk"><a href="/w/index.php?title=Template_talk:Ken_Thompson_navbox&action=edit&redlink=1" class="new" title="Template talk:Ken Thompson navbox (page does not exist)"><span title="Discuss this template" style=";;background:none transparent;border:none;">t</span></a></li>
<li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Ken_Thompson_navbox&action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;">e</span></a></li>
</ul>
</div>
<div class="" style="font-size:110%;"><a href="/wiki/Ken_Thompson" title="Ken Thompson">Ken Thompson</a></div>
</th>
</tr>
<tr style="height:2px;">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Operating systems</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Unix" title="Unix">Unix</a></li>
<li><a href="/wiki/Plan_9_from_Bell_Labs" title="Plan 9 from Bell Labs">Plan 9 from Bell Labs</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Programming languages</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/B_(programming_language)" title="B (programming language)">B</a></li>
<li><a href="/wiki/Bon_(programming_language)" title="Bon (programming language)">Bon</a></li>
<li><strong class="selflink">Go</strong></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Software</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/Belle_(chess_machine)" title="Belle (chess machine)">Belle</a></li>
<li><a href="/wiki/Ed_(text_editor)" title="Ed (text editor)">ed</a></li>
<li><a href="/wiki/Sam_(text_editor)" title="Sam (text editor)">sam</a></li>
<li><a href="/wiki/Space_Travel_(video_game)" title="Space Travel (video game)">Space Travel</a></li>
</ul>
</div>
</td>
</tr>
<tr style="height:2px">
<td></td>
</tr>
<tr>
<th scope="row" class="navbox-group" style=";;">Other</th>
<td style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<div style="padding:0em 0.25em">
<ul>
<li><a href="/wiki/UTF-8" title="UTF-8">UTF-8</a></li>
</ul>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!--
NewPP limit report
Preprocessor node count: 25469/1000000
Post-expand include size: 204022/2048000 bytes
Template argument size: 74337/2048000 bytes
Highest expansion depth: 28/40
Expensive parser function count: 5/500
-->
<!-- Saved in parser cache with key enwiki:pcache:idhash:25039021-0!*!0!!en!4!* and timestamp 20120907001121 -->
</div> <!-- /bodycontent -->
<!-- printfooter -->
<div class="printfooter">
Retrieved from "<a href="http://en.wikipedia.org/w/index.php?title=Go_(programming_language)&oldid=508833010">http://en.wikipedia.org/w/index.php?title=Go_(programming_language)&oldid=508833010</a>" </div>
<!-- /printfooter -->
<!-- catlinks -->
<div id='catlinks' class='catlinks'><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Special:Categories" title="Special:Categories">Categories</a>: <ul><li><a href="/wiki/Category:C_programming_language_family" title="Category:C programming language family">C programming language family</a></li><li><a href="/wiki/Category:Concurrent_programming_languages" title="Category:Concurrent programming languages">Concurrent programming languages</a></li><li><a href="/wiki/Category:Google_software" title="Category:Google software">Google software</a></li><li><a href="/wiki/Category:Procedural_programming_languages" title="Category:Procedural programming languages">Procedural programming languages</a></li><li><a href="/wiki/Category:Systems_programming_languages" title="Category:Systems programming languages">Systems programming languages</a></li><li><a href="/wiki/Category:Cross-platform_software" title="Category:Cross-platform software">Cross-platform software</a></li><li><a href="/wiki/Category:Programming_languages_created_in_2009" title="Category:Programming languages created in 2009">Programming languages created in 2009</a></li><li><a href="/wiki/Category:American_inventions" title="Category:American inventions">American inventions</a></li></ul></div><div id="mw-hidden-catlinks" class="mw-hidden-catlinks mw-hidden-cats-hidden">Hidden categories: <ul><li><a href="/wiki/Category:Wikipedia_introduction_cleanup_from_March_2012" title="Category:Wikipedia introduction cleanup from March 2012">Wikipedia introduction cleanup from March 2012</a></li><li><a href="/wiki/Category:All_pages_needing_cleanup" title="Category:All pages needing cleanup">All pages needing cleanup</a></li><li><a href="/wiki/Category:Articles_covered_by_WikiProject_Wikify_from_March_2012" title="Category:Articles covered by WikiProject Wikify from March 2012">Articles covered by WikiProject Wikify from March 2012</a></li><li><a href="/wiki/Category:All_articles_covered_by_WikiProject_Wikify" title="Category:All articles covered by WikiProject Wikify">All articles covered by WikiProject Wikify</a></li><li><a href="/wiki/Category:All_articles_with_unsourced_statements" title="Category:All articles with unsourced statements">All articles with unsourced statements</a></li><li><a href="/wiki/Category:Articles_with_unsourced_statements_from_May_2012" title="Category:Articles with unsourced statements from May 2012">Articles with unsourced statements from May 2012</a></li><li><a href="/wiki/Category:Articles_containing_potentially_dated_statements_from_March_2012" title="Category:Articles containing potentially dated statements from March 2012">Articles containing potentially dated statements from March 2012</a></li><li><a href="/wiki/Category:All_articles_containing_potentially_dated_statements" title="Category:All articles containing potentially dated statements">All articles containing potentially dated statements</a></li><li><a href="/wiki/Category:Use_dmy_dates_from_August_2011" title="Category:Use dmy dates from August 2011">Use dmy dates from August 2011</a></li></ul></div></div> <!-- /catlinks -->
<div class="visualClear"></div>
<!-- debughtml -->
<!-- /debughtml -->
</div>
<!-- /bodyContent -->
</div>
<!-- /content -->
<!-- header -->
<div id="mw-head" class="noprint">
<!-- 0 -->
<div id="p-personal" class="">
<h5>Personal tools</h5>
<ul>
<li id="pt-createaccount"><a href="/w/index.php?title=Special:UserLogin&returnto=Golang&type=signup" class="">Create account</a></li>
<li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&returnto=Golang" class="" title="You are encouraged to log in; however, it is not mandatory. [o]" accesskey="o">Log in</a></li>
</ul>
</div>
<!-- /0 -->
<div id="left-navigation">
<!-- 0 -->
<div id="p-namespaces" class="vectorTabs">
<h5>Namespaces</h5>
<ul>
<li id="ca-nstab-main" class="selected"><span><a href="/wiki/Go_(programming_language)" title="View the content page [c]" accesskey="c">Article</a></span></li>
<li id="ca-talk"><span><a href="/wiki/Talk:Go_(programming_language)" title="Discussion about the content page [t]" accesskey="t">Talk</a></span></li>
</ul>
</div>
<!-- /0 -->
<!-- 1 -->
<div id="p-variants" class="vectorMenu emptyPortlet">
<h4>
</h4>
<h5><span>Variants</span><a href="#"></a></h5>
<div class="menu">
<ul>
</ul>
</div>
</div>
<!-- /1 -->
</div>
<div id="right-navigation">
<!-- 0 -->
<div id="p-views" class="vectorTabs">
<h5>Views</h5>
<ul>
<li id="ca-view" class="selected"><span><a href="/wiki/Go_(programming_language)" >Read</a></span></li>
<li id="ca-edit"><span><a href="/w/index.php?title=Go_(programming_language)&action=edit" title="You can edit this page. Please use the preview button before saving. [e]" accesskey="e">Edit</a></span></li>
<li id="ca-history" class="collapsible"><span><a href="/w/index.php?title=Go_(programming_language)&action=history" title="Past versions of this page [h]" accesskey="h">View history</a></span></li>
</ul>
</div>
<!-- /0 -->
<!-- 1 -->
<div id="p-cactions" class="vectorMenu emptyPortlet">
<h5><span>Actions</span><a href="#"></a></h5>
<div class="menu">
<ul>
</ul>
</div>
</div>
<!-- /1 -->
<!-- 2 -->
<div id="p-search">
<h5><label for="searchInput">Search</label></h5>
<form action="/w/index.php" id="searchform">
<div id="simpleSearch">
<input type="text" name="search" value="" title="Search Wikipedia [f]" accesskey="f" id="searchInput" /> <button type="submit" name="button" title="Search Wikipedia for this text" id="searchButton" width="12" height="13"><img src="//bits.wikimedia.org/static-1.20wmf10/skins/vector/images/search-ltr.png?303-4" alt="Search" /></button> <input type='hidden' name="title" value="Special:Search"/>
</div>
</form>
</div>
<!-- /2 -->
</div>
</div>
<!-- /header -->
<!-- panel -->
<div id="mw-panel" class="noprint">
<!-- logo -->
<div id="p-logo"><a style="background-image: url(//upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png);" href="/wiki/Main_Page" title="Visit the main page"></a></div>
<!-- /logo -->
<!-- navigation -->
<div class="portal" id='p-navigation'>
<h5>Navigation</h5>
<div class="body">
<ul>
<li id="n-mainpage-description"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z">Main page</a></li>
<li id="n-contents"><a href="/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</a></li>
<li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content – the best of Wikipedia">Featured content</a></li>
<li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li>
<li id="n-randompage"><a href="/wiki/Special:Random" title="Load a random article [x]" accesskey="x">Random article</a></li>
<li id="n-sitesupport"><a href="//donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&utm_medium=sidebar&utm_campaign=20120717SB001&uselang=en" title="Support us">Donate to Wikipedia</a></li>
</ul>
</div>
</div>
<!-- /navigation -->
<!-- SEARCH -->
<!-- /SEARCH -->
<!-- interaction -->
<div class="portal" id='p-interaction'>
<h5>Interaction</h5>
<div class="body">
<ul>
<li id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</a></li>
<li id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</a></li>
<li id="n-portal"><a href="/wiki/Wikipedia:Community_portal" title="About the project, what you can do, where to find things">Community portal</a></li>
<li id="n-recentchanges"><a href="/wiki/Special:RecentChanges" title="A list of recent changes in the wiki [r]" accesskey="r">Recent changes</a></li>
<li id="n-contact"><a href="/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia">Contact Wikipedia</a></li>
</ul>
</div>
</div>
<!-- /interaction -->
<!-- TOOLBOX -->
<div class="portal" id='p-tb'>
<h5>Toolbox</h5>
<div class="body">
<ul>
<li id="t-whatlinkshere"><a href="/wiki/Special:WhatLinksHere/Go_(programming_language)" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j">What links here</a></li>
<li id="t-recentchangeslinked"><a href="/wiki/Special:RecentChangesLinked/Go_(programming_language)" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li>
<li id="t-upload"><a href="/wiki/Wikipedia:Upload" title="Upload files [u]" accesskey="u">Upload file</a></li>
<li id="t-specialpages"><a href="/wiki/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q">Special pages</a></li>
<li id="t-permalink"><a href="/w/index.php?title=Go_(programming_language)&oldid=508833010" title="Permanent link to this revision of the page">Permanent link</a></li>
<li id="t-cite"><a href="/w/index.php?title=Special:Cite&page=Go_%28programming_language%29&id=508833010" title="Information on how to cite this page">Cite this page</a></li> </ul>
</div>
</div>
<!-- /TOOLBOX -->
<!-- coll-print_export -->
<div class="portal" id='p-coll-print_export'>
<h5>Print/export</h5>
<div class="body">
<ul id="collectionPortletList"><li id="coll-create_a_book"><a href="/w/index.php?title=Special:Book&bookcmd=book_creator&referer=Go+%28programming+language%29" title="Create a book or page collection" rel="nofollow">Create a book</a></li><li id="coll-download-as-rl"><a href="/w/index.php?title=Special:Book&bookcmd=render_article&arttitle=Go+%28programming+language%29&oldid=508833010&writer=rl" title="Download a PDF version of this wiki page" rel="nofollow">Download as PDF</a></li><li id="t-print"><a href="/w/index.php?title=Go_(programming_language)&printable=yes" title="Printable version of this page [p]" accesskey="p">Printable version</a></li></ul> </div>
</div>
<!-- /coll-print_export -->
<!-- LANGUAGES -->
<div class="portal" id='p-lang'>
<h5>Languages</h5>
<div class="body">
<ul>
<li class="interwiki-ar"><a href="//ar.wikipedia.org/wiki/%D8%BA%D9%88_(%D9%84%D8%BA%D8%A9_%D8%A8%D8%B1%D9%85%D8%AC%D8%A9)" title="غو (لغة برمجة)" lang="ar" hreflang="ar">العربية</a></li>
<li class="interwiki-bg"><a href="//bg.wikipedia.org/wiki/Go_(%D0%B5%D0%B7%D0%B8%D0%BA_%D0%B7%D0%B0_%D0%BF%D1%80%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%B8%D1%80%D0%B0%D0%BD%D0%B5)" title="Go (език за програмиране)" lang="bg" hreflang="bg">Български</a></li>
<li class="interwiki-cs"><a href="//cs.wikipedia.org/wiki/Go_(programovac%C3%AD_jazyk)" title="Go (programovací jazyk)" lang="cs" hreflang="cs">Česky</a></li>
<li class="interwiki-da"><a href="//da.wikipedia.org/wiki/Go_(programmeringssprog)" title="Go (programmeringssprog)" lang="da" hreflang="da">Dansk</a></li>
<li class="interwiki-de"><a href="//de.wikipedia.org/wiki/Go_(Programmiersprache)" title="Go (Programmiersprache)" lang="de" hreflang="de">Deutsch</a></li>
<li class="interwiki-es"><a href="//es.wikipedia.org/wiki/Go_(lenguaje_de_programaci%C3%B3n)" title="Go (lenguaje de programación)" lang="es" hreflang="es">Español</a></li>
<li class="interwiki-fr"><a href="//fr.wikipedia.org/wiki/Go_(langage)" title="Go (langage)" lang="fr" hreflang="fr">Français</a></li>
<li class="interwiki-ko"><a href="//ko.wikipedia.org/wiki/Go_(%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D_%EC%96%B8%EC%96%B4)" title="Go (프로그래밍 언어)" lang="ko" hreflang="ko">한국어</a></li>
<li class="interwiki-it"><a href="//it.wikipedia.org/wiki/Go_(linguaggio_di_programmazione)" title="Go (linguaggio di programmazione)" lang="it" hreflang="it">Italiano</a></li>
<li class="interwiki-he"><a href="//he.wikipedia.org/wiki/Go_(%D7%A9%D7%A4%D7%AA_%D7%AA%D7%9B%D7%A0%D7%95%D7%AA)" title="Go (שפת תכנות)" lang="he" hreflang="he">עברית</a></li>
<li class="interwiki-hu"><a href="//hu.wikipedia.org/wiki/Go_(programoz%C3%A1si_nyelv)" title="Go (programozási nyelv)" lang="hu" hreflang="hu">Magyar</a></li>
<li class="interwiki-ms"><a href="//ms.wikipedia.org/wiki/Go_(bahasa_pengaturcaraan)" title="Go (bahasa pengaturcaraan)" lang="ms" hreflang="ms">Bahasa Melayu</a></li>
<li class="interwiki-nl"><a href="//nl.wikipedia.org/wiki/Go_(programmeertaal)" title="Go (programmeertaal)" lang="nl" hreflang="nl">Nederlands</a></li>
<li class="interwiki-ja"><a href="//ja.wikipedia.org/wiki/Go_(%E3%83%97%E3%83%AD%E3%82%B0%E3%83%A9%E3%83%9F%E3%83%B3%E3%82%B0%E8%A8%80%E8%AA%9E)" title="Go (プログラミング言語)" lang="ja" hreflang="ja">日本語</a></li>
<li class="interwiki-no"><a href="//no.wikipedia.org/wiki/Go_(programmeringsspr%C3%A5k)" title="Go (programmeringsspråk)" lang="no" hreflang="no">norsk (bokmål)</a></li>
<li class="interwiki-pl"><a href="//pl.wikipedia.org/wiki/Go_(j%C4%99zyk_programowania)" title="Go (język programowania)" lang="pl" hreflang="pl">Polski</a></li>
<li class="interwiki-pt"><a href="//pt.wikipedia.org/wiki/Go_(linguagem_de_programa%C3%A7%C3%A3o)" title="Go (linguagem de programação)" lang="pt" hreflang="pt">Português</a></li>
<li class="interwiki-ru"><a href="//ru.wikipedia.org/wiki/Go" title="Go" lang="ru" hreflang="ru">Русский</a></li>
<li class="interwiki-sr"><a href="//sr.wikipedia.org/wiki/%D0%93%D0%BE%D1%83" title="Гоу" lang="sr" hreflang="sr">Српски / srpski</a></li>
<li class="interwiki-fi"><a href="//fi.wikipedia.org/wiki/Go_(ohjelmointikieli)" title="Go (ohjelmointikieli)" lang="fi" hreflang="fi">Suomi</a></li>
<li class="interwiki-sv"><a href="//sv.wikipedia.org/wiki/Go_(programspr%C3%A5k)" title="Go (programspråk)" lang="sv" hreflang="sv">Svenska</a></li>
<li class="interwiki-ta"><a href="//ta.wikipedia.org/wiki/%E0%AE%95%E0%AF%8B_(%E0%AE%A8%E0%AE%BF%E0%AE%B0%E0%AE%B2%E0%AE%BE%E0%AE%95%E0%AF%8D%E0%AE%95_%E0%AE%AE%E0%AF%8A%E0%AE%B4%E0%AE%BF)" title="கோ (நிரலாக்க மொழி)" lang="ta" hreflang="ta">தமிழ்</a></li>
<li class="interwiki-tr"><a href="//tr.wikipedia.org/wiki/Go_(programlama_dili)" title="Go (programlama dili)" lang="tr" hreflang="tr">Türkçe</a></li>
<li class="interwiki-uk"><a href="//uk.wikipedia.org/wiki/Go_(%D0%BC%D0%BE%D0%B2%D0%B0_%D0%BF%D1%80%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D1%83%D0%B2%D0%B0%D0%BD%D0%BD%D1%8F)" title="Go (мова програмування)" lang="uk" hreflang="uk">Українська</a></li>
<li class="interwiki-vi"><a href="//vi.wikipedia.org/wiki/Go_(ng%C3%B4n_ng%E1%BB%AF_l%E1%BA%ADp_tr%C3%ACnh)" title="Go (ngôn ngữ lập trình)" lang="vi" hreflang="vi">Tiếng Việt</a></li>
<li class="interwiki-zh"><a href="//zh.wikipedia.org/wiki/Go" title="Go" lang="zh" hreflang="zh">中文</a></li>
</ul>
</div>
</div>
<!-- /LANGUAGES -->
</div>
<!-- /panel -->
<!-- footer -->
<div id="footer">
<ul id="footer-info">
<li id="footer-info-lastmod"> This page was last modified on 23 August 2012 at 20:34.<br /></li>
<li id="footer-info-copyright">Text is available under the <a rel="license" href="//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License">Creative Commons Attribution-ShareAlike License</a><a rel="license" href="//creativecommons.org/licenses/by-sa/3.0/" style="display:none;"></a>;
additional terms may apply.
See <a href="//wikimediafoundation.org/wiki/Terms_of_use">Terms of use</a> for details.<br/>
Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.<br /></li><li class="noprint"><a class='internal' href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact us</a></li>
</ul>
<ul id="footer-places">
<li id="footer-places-privacy"><a href="//wikimediafoundation.org/wiki/Privacy_policy" title="wikimedia:Privacy policy">Privacy policy</a></li>
<li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
<li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
<li id="footer-places-mobileview"><a href="http://en.m.wikipedia.org/w/index.php?title=Golang&mobileaction=toggle_view_mobile" class="noprint">Mobile view</a></li>
</ul>
<ul id="footer-icons" class="noprint">
<li id="footer-copyrightico">
<a href="//wikimediafoundation.org/"><img src="//bits.wikimedia.org/images/wikimedia-button.png" width="88" height="31" alt="Wikimedia Foundation"/></a>
</li>
<li id="footer-poweredbyico">
<a href="//www.mediawiki.org/"><img src="//bits.wikimedia.org/static-1.20wmf10/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" width="88" height="31" /></a>
</li>
</ul>
<div style="clear:both"></div>
</div>
<!-- /footer -->
<script type="text/javascript">if(window.mw){
mw.loader.state({"site":"loading","user":"ready","user.groups":"ready"});
}</script>
<script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=skins.vector&only=scripts&skin=vector&*" type="text/javascript"></script>
<script type="text/javascript">if(window.mw){
mw.loader.load(["mediawiki.user","mediawiki.page.ready","mediawiki.legacy.mwsuggest","ext.gadget.teahouse","ext.gadget.ReferenceTooltips","ext.vector.collapsibleNav","ext.vector.collapsibleTabs","ext.vector.editWarning","ext.vector.simpleSearch","ext.UserBuckets","ext.articleFeedback.startup","ext.articleFeedbackv5.startup","ext.markAsHelpful","ext.Experiments.lib","ext.Experiments.experiments"], null, true);
}</script>
<script src="/w/index.php?title=MediaWiki:Gadget-ReferenceTooltips.js&action=raw&ctype=text/javascript&508635914" type="text/javascript"></script>
<script src="/w/index.php?title=MediaWiki:Gadget-DRN-wizard-loader.js&action=raw&ctype=text/javascript&504341206" type="text/javascript"></script>
<script type="text/javascript">
window._reg = "";
</script>
<script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=site&only=scripts&skin=vector&*" type="text/javascript"></script>
<!-- Served by srv270 in 0.127 secs. -->
</body>
</html>
|