From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Soo Subject: Re: Help with Learning Programming and LISP Date: Mon, 9 Sep 2019 09:38:15 -0700 Message-ID: <7E8F74CF-2193-44E0-8A65-0A0BEF53A3CA@asu.edu> References: <9618e0b6e24159251b9d264659149b615a641561.camel@disroot.org> Mime-Version: 1.0 (1.0) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:38956) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i7MgH-0004p6-0B for help-guix@gnu.org; Mon, 09 Sep 2019 12:38:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i7MgF-0003S5-61 for help-guix@gnu.org; Mon, 09 Sep 2019 12:38:19 -0400 Received: from mail-ot1-x335.google.com ([2607:f8b0:4864:20::335]:33672) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i7MgE-0003R7-OJ for help-guix@gnu.org; Mon, 09 Sep 2019 12:38:19 -0400 Received: by mail-ot1-x335.google.com with SMTP id g25so11862931otl.0 for ; Mon, 09 Sep 2019 09:38:18 -0700 (PDT) In-Reply-To: <9618e0b6e24159251b9d264659149b615a641561.camel@disroot.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Raghav Gururajan Cc: help-guix@gnu.org Hi Raghav! > I would like to learn programming starting with LISP Great! Lisp is probably the best language to start with!=20 Lisp books also rank among the best introductory materials to programming. I= highly recommend these two: - Structure and Interpretation of Computer Programs (often called SICP) This uses a dialect of scheme, so you can do the exercises without much tran= slation using guile or racket. It touches on many aspects of computer scienc= e and I think is closest to the swiss-army knife you deacribed. There are al= so excellent lectures freely available on YouTube by the authors. - Land of Lisp This is an introduction to Common Lisp. I am less familiar with it, but it a= lways comes highly recommended as a fun introduction to programming by writi= ng simple games. If I=E2=80=99m not mistaken, it may be a little more pragma= tic than SICP.=20 Hope that helps and happy hacking! - John=