permacomputing

Source repository for the main permacomputing wiki site
git clone http://git.permacomputing.net/repos/permacomputing.git # read-only access
Log | Files | Refs

commit cacbb2741e4f61ecf6b0e94a1c3a2ce73b2f1703
parent 897ae47a0a0d239af839a6fb73fb3db607d46a2c
Author: decentral1se <decentral1se@web>
Date:   Sat,  3 Aug 2024 19:55:16 +0200

typo

Diffstat:
MGo.mdwn | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Go.mdwn b/Go.mdwn @@ -8,7 +8,7 @@ Go has a published [language specification](https://go.dev/ref/spec) and a [v1 c The loading of program dependencies is based on URLs. This implies always-on internet connectivity and typically centralised git repository hosting. A work-around for this is to use [vendoring](https://go.dev/ref/mod#vendoring) which supports downloading and bundling all program dependencies into the source tree. -Go can be [[bootstrapped|bootstrapping]] with Go itself, or [[C]] (via `gccgo`/`gollvm`). However, with the introduction of generics, not all new version of Go can be bootstrapped with C. `gccgo` supports [up to 1.18](https://go.dev/doc/install/gccgo). It's also possible [to bootstrap from Go 1.4](https://go.dev/doc/install/source#bootstrapFromSource), the last version written in C. +Go can be [[bootstrapped|bootstrapping]] with Go itself, or [[C]] (via `gccgo`/`gollvm`). However, with the introduction of generics, not all new versions of Go can be bootstrapped with C. `gccgo` supports [up to version 1.18](https://go.dev/doc/install/gccgo). It's also possible [to bootstrap from Go 1.4](https://go.dev/doc/install/source#bootstrapFromSource), the last version written in C. There are [language design decisions](https://tinygo.org/docs/concepts/faq/why-a-new-compiler/) which make Go unsuitable for embedded systems. The [TinyGo](https://tinygo.org) project aims to provide an alternative.