From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wm0-f41.google.com ([74.125.82.41]) by ur; Fri May 5 20:47:35 EDT 2017 Received: by mail-wm0-f41.google.com with SMTP id b84so6319062wmh.0 for <9front@9front.org>; Fri, 05 May 2017 17:47:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=2wa7Y9Vflsg68WCEwleq4Z/o4G1C7UiwFLvHcSQAyTQ=; b=R963Nvx3CTCYJjHRokwEgECyer8mcdKxgJFs3ZZA6I5CIpPyYKe2GgiAz/ZW7c7wrm NOMugxs5bYa4w8hBnZDIj7xQbuOAKzOaBN4jsQx1RTcDDQmJdIsNkf7D8BipoWhdJQHo b61E4lX1eaG7nWxnIFdjXtZzXn/iF3W9Z9YW7J5YPwjTl3W8nq0kV8mP4MajZzeO3M4q xTg/cIoyZVs6j1EGcwzyWRcBjtNbFsGQ0l9XaFtDW4Ivkih0P6ia/ap2SxJ/w9dkiNkM AUW3bzdB+1nSiH3PLEIg24yR5pznpXNWUwxd4N74ZDDrdFxna8qPPWr7ZXoS6YGtKwsN fliA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=2wa7Y9Vflsg68WCEwleq4Z/o4G1C7UiwFLvHcSQAyTQ=; b=lxLtsgBQ7QZkJXk7hCGcetRv2Jtr/76y3mRgQFFgj7alczo9QZBxs4A9+b5b+quR0p DgZwyaGrHWUC3gVt0DU6OZyV2ILzoCb8MLtov9DaVJ5A+/l58dtB2MdhYxwb8deW+Qqh bKwt85KJbLNycEvbWqWk3V1ybbbP6NdfaH/81mhAjlKKOFwm6AGArejBWd4wfoKsHC6m BZ2EOmXBPHSHzkskjcbuXjXraYFDd65PC34EwqpwpQaANGsrO52evLXaL3K6biGrIEkv SU+0qVdHqpzpXWOXvEZukIAJQjhUUM+k2Lru+psqi1ptWWKBGE9MYDtHIZpgxbzPUwKH TIYg== X-Gm-Message-State: AODbwcBRZk9l6p6+QJl+tE/gvm172tBFtZ0GYonaclbjONKPTkFW6xr3 fMGckohowsSVJYvZsOwdK7c+P9AEWw== X-Received: by 10.28.87.70 with SMTP id l67mr6855131wmb.46.1494031652792; Fri, 05 May 2017 17:47:32 -0700 (PDT) MIME-Version: 1.0 Received: by 10.28.223.139 with HTTP; Fri, 5 May 2017 17:47:32 -0700 (PDT) In-Reply-To: References: From: Bruce Ellis Date: Sat, 6 May 2017 10:47:32 +1000 Message-ID: Subject: Re: Reimplementing Plan 9 in Go (Was: Re: [9front] bio io functions) To: 9front@9front.org Content-Type: multipart/alternative; boundary=001a1144323ef2b1ce054ed05913 List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: distributed stable hardware-scale information proxy --001a1144323ef2b1ce054ed05913 Content-Type: text/plain; charset=UTF-8 Bug/typo in Clive example. The line: x := c3 assigns the channel c3 to x and is not a select statement. It should be: x := <-c3 Looks like an interesting project from those whacky lads. brucee On 6 May 2017 at 05:43, Giacomo Tesio wrote: > You might find https://lsub.org/ls/clive.html interesting. > > > Giacomo > > 2017-05-05 15:25 GMT+02:00 Dave MacFarlane : > > On Fri, May 5, 2017 at 6:21 AM, Stanley Lieber > wrote: > >> > >> Plan 9 has not yet been re-implemented in Go. > >> > >> sl > >> > > > > I started trying to do that at one point, but never got my kernel much > > farther than booting just enough to run "Hello, world!" compiled with > > 6c on a FAT filesystem in ring 0 and then crashing the system before > > deciding I don't have the time to finish it or get it somewhere > > useable. If anyone who has the time is interested in picking it up, > > contact me off-list and I'll send you a link to my (horribly written > > and designed) code. > > > > I'm more of a userspace kinda guy anyways.. > > > > - Dave > --001a1144323ef2b1ce054ed05913 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Bug/typo in Clive example.

The line:

x :=3D c3

assigns the chann= el c3 to x and is not a select statement.

It shoul= d be:

x :=3D <-c3

Look= s like an interesting project from those whacky lads.

<= div>brucee

On 6 May 2017 at 05:43, Giacomo Tesio <giacomo@tesio.it>= wrote:
You might find https://lsub.= org/ls/clive.html interesting.


Giacomo

2017-05-05 15:25 GMT+02:00 Dave MacFarlane <driusan@gmail.com>:
> On Fri, May 5, 2017 at 6:21 AM, Stanley Lieber <sl@stanleylieber.com> wrote:
>>
>> Plan 9 has not yet been re-implemented in Go.
>>
>> sl
>>
>
> I started trying to do that at one point, but never got my kernel much=
> farther than booting just enough to run "Hello, world!" comp= iled with
> 6c on a FAT filesystem in ring 0 and then crashing the system before > deciding I don't have the time to finish it or get it somewhere > useable. If anyone who has the time is interested in picking it up, > contact me off-list and I'll send you a link to my (horribly writt= en
> and designed) code.
>
> I'm more of a userspace kinda guy anyways..
>
> - Dave

--001a1144323ef2b1ce054ed05913--