Change-Id: I53355d0e3ecc63df6e1afccc0b0e6d69c31adc82
Reviewed-on: https://go-review.googlesource.com/c/website/+/569095
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: shuang cui <imcusg@gmail.com>
This commit is contained in:
cui fliter 2024-03-05 11:31:15 +08:00 коммит произвёл Gopher Robot
Родитель 49e4b394d9
Коммит e2bd64a578
4 изменённых файлов: 28 добавлений и 26 удалений

Просмотреть файл

@ -184,6 +184,7 @@ from it.</li>
<code>"fmt.Print"</code> as an unstructured literal with a <code>"."</code>
that needs to be quoted. It objects even more strongly to method names of
the form <code>pkg.(*MyType).Meth</code>.
</li>
<li>As of Go 1.11, debug information is compressed by default.
Older versions of gdb, such as the one available by default on MacOS,
do not understand the compression.

Просмотреть файл

@ -303,9 +303,9 @@ func main() {
<h2>On my Mac (OS X 10.5.8, gcc 4.0.1):</h2>
<ul>
<li>C: <code>#include &lt;stdio.h&gt;</code> reads 360 lines from 9 files.
<li>C++: <code>#include &lt;iostream&gt;</code> reads 25,326 lines from 131 files.
<li>Objective C: <code>#include &lt;Carbon/Carbon.h&gt;</code> reads 124,730 lines from 689 files.
<li>C: <code>#include &lt;stdio.h&gt;</code> reads 360 lines from 9 files.</li>
<li>C++: <code>#include &lt;iostream&gt;</code> reads 25,326 lines from 131 files.</li>
<li>Objective C: <code>#include &lt;Carbon/Carbon.h&gt;</code> reads 124,730 lines from 689 files.</li>
</ul>
<h2>And we haven't done any real work yet!</h2>
@ -367,28 +367,28 @@ type gui.Mouse struct {
<div>
<h2>Open source:</h2>
<ul>
<li>released on November 10, 2009
<li>regular releases (~ weekly)
<li>all development done in public Mercurial repository
<li>outside contributions welcome
<li>released on November 10, 2009</li>
<li>regular releases (~ weekly)</li>
<li>all development done in public Mercurial repository</li>
<li>outside contributions welcome</li>
</ul>
</div>
<div>
<h2>Portable:</h2>
<ul>
<li>FreeBSD, Linux, OS X (x86, x86-64)
<li>(in progress) Linux arm, Native Client x86, Windows x86.
<li>FreeBSD, Linux, OS X (x86, x86-64)</li>
<li>(in progress) Linux arm, Native Client x86, Windows x86.</li>
</ul>
</div>
<div>
<h2>Still in progress, experimental. Yet to come:</h2>
<ul>
<li>mature garbage collector
<li>generics?
<li>exceptions?
<li>unions or sum types?
<li>mature garbage collector</li>
<li>generics?</li>
<li>exceptions?</li>
<li>unions or sum types?</li>
</ul>
</div>
</div>

Просмотреть файл

@ -401,12 +401,12 @@ and distinguish which finished by inspecting value sent on channel.
<h2>Open source:</h2>
<ul>
<li>released on November 10, 2009
<li>regular releases (~ weekly)
<li>all development done in public Mercurial repository
<li>outside contributions welcome
<li>two independent compiler implementations
<li>XML, JSON, HTTP, TLS/SSL, native RPC, (network channels,) ...
<li>released on November 10, 2009</li>
<li>regular releases (~ weekly)</li>
<li>all development done in public Mercurial repository</li>
<li>outside contributions welcome</li>
<li>two independent compiler implementations</li>
<li>XML, JSON, HTTP, TLS/SSL, native RPC, (network channels,) ...</li>
</ul>
</div>
@ -417,8 +417,8 @@ and distinguish which finished by inspecting value sent on channel.
<h2>Portable:</h2>
<ul>
<li>FreeBSD, Linux, OS X (x86, x86-64)
<li>(in progress) Linux arm, Native Client x86, Windows x86.
<li>FreeBSD, Linux, OS X (x86, x86-64)</li>
<li>(in progress) Linux arm, Native Client x86, Windows x86.</li>
</ul>
</div>
@ -430,10 +430,10 @@ and distinguish which finished by inspecting value sent on channel.
<h2>Still in progress, experimental. Yet to come:</h2>
<ul>
<li>production garbage collector
<li>generics?
<li>exceptions?
<li>unions or sum types?
<li>production garbage collector</li>
<li>generics?</li>
<li>exceptions?</li>
<li>unions or sum types?</li>
</ul>
</div>

Просмотреть файл

@ -64,7 +64,7 @@ table {
<tr>
<td><input type="text" name="key"{{with .New}} value="{{.Key}}"{{end}} placeholder="better-linker" required></td>
<td><input type="url" name="target" value="{{with .New}}{{.Target}}{{else}}https://{{end}}" required></td>
<td><input type="submit" name="do" value="Add">
<td><input type="submit" name="do" value="Add"></td>
</tr>
</form>
@ -106,3 +106,4 @@ document.querySelectorAll('.delete').forEach(el => {
})
});
</script>
</html>