From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,DKIM_VALID_EF,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from minnie.tuhs.org (minnie.tuhs.org [45.79.103.53]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id aa9f622c for ; Sat, 17 Nov 2018 22:00:48 +0000 (UTC) Received: by minnie.tuhs.org (Postfix, from userid 112) id CB584A26E9; Sun, 18 Nov 2018 08:00:47 +1000 (AEST) Received: from minnie.tuhs.org (localhost [127.0.0.1]) by minnie.tuhs.org (Postfix) with ESMTP id 7E6CFA26F9; Sun, 18 Nov 2018 08:00:19 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=tuhs.org; s=dkim; t=1542492038; bh=+55bNP4GkFKatJySJ9AMNKYTagt98Iqih6csft2nCXM=; h=Date:From:To:References:In-Reply-To:Subject:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=iLzuDYDg0hiYx5ViwSA5kKJBwQVa8tWvM2qVXvUE2JLxgHCRX10G4jxxxihmAdHgD wcEXy2zmlSXfCKi1Sn2fYzLyUlBEvCQKbuLimamU0SIrTocAr1MWu0crYYSzNqiOCD hfwta9cvjSSCuu+sVSHB4VbubF0mLoevV3ZzTsGQ= Received: by minnie.tuhs.org (Postfix, from userid 1000) id 178A693FC6; Sun, 18 Nov 2018 08:00:17 +1000 (AEST) Date: Sun, 18 Nov 2018 08:00:17 +1000 From: Warren Toomey To: tuhs@tuhs.org Message-ID: <20181117220017.GA16015@minnie.tuhs.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Subject: Re: [TUHS] C game X-BeenThere: tuhs@minnie.tuhs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: The Unix Heritage Society mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: tuhs-bounces@minnie.tuhs.org Sender: "TUHS" On Sat, Nov 17, 2018 at 01:34:10PM +0000, Caipenghui wrote: > Hello, everyone: > > Recommend a few c language to write on the computer that do not have a network, best can compile to run with GCC. This will kill my time. I like to play with greedy snake written in c language, which is really interesting. Thank you very much! A meta-game would be to read through the C programs at https://www.ioccc.org/ and try to deduce how they work :-) Cheers, Warren