X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition :content-transfer-encoding:in-reply-to:user-agent; bh=r89Knnc7HNniyV67TuwLwJ1Gh4zKO3VCdkQ6a66CyMM=; b=qCeZv/PQLPq3A8DfAcZDCQfXsoF/qRMv5MYeMX2rwPCUYglD0rWJWeVm8TJukflD6Q Im0PvmjbYPdiOk7Z2ki2wsCjcZZLO024Rw9muW+qbfJYp9ifRQdfkaTdLwQ9eTmJg9Sn ROlzWoQPzXLEU/gzJBLaaigjfD+5gRB7+96HElfI1UKOX51zGw+iNb+f/5qsNfJWayXX NRyUPpis2p4447QQ5bR9hmvUbQQL0vY3uc4rAPS8KA+YrSN7LHt9QgAGUf+/yfyP+XhE CxWYwa6ucHseVP7kV6uDz6v2en6/csGeTUuPM+hfN/9V9y4pKTKPyt9ykFf3KffM06CP S13w== X-Received: by 10.152.181.34 with SMTP id dt2mr27413176lac.84.1438011628315; Mon, 27 Jul 2015 08:40:28 -0700 (PDT) Date: Mon, 27 Jul 2015 18:40:25 +0300 From: "Vladimir Zhbanov (vzhbanov AT gmail DOT com) [via geda-user AT delorie DOT com]" To: geda-user AT delorie DOT com Subject: Re: [geda-user] The new to do Message-ID: <20150727154025.GA2752@localhost.localdomain> Mail-Followup-To: geda-user AT delorie DOT com References: <0A5D410F-D1EF-4FC6-AF0F-BB13218B1615 AT icloud DOT com> <20150714084906 DOT GC14371 AT localhost DOT localdomain> <20150720131753 DOT GA19305 AT localhost DOT localdomain> <20150726122814 DOT GE8789 AT localhost DOT localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, Jul 27, 2015 at 07:22:04AM -0600, John Doty wrote: > > On Jul 26, 2015, at 6:28 AM, Vladimir Zhbanov (vzhbanov AT gmail DOT com) [via geda-user AT delorie DOT com] wrote: > > > On Sat, Jul 25, 2015 at 09:06:56PM +0200, Kai-Martin Knaak wrote: > > ... > >>> Anyway, the script for gschem is attached. > >> > >> Unfortunately, it is all greek, err, guile to me. But good to see that > >> this kind of tasks can be tackled in current gschem. > > > > The guile syntax is simple enough, any function has the following form > > (function-name arg1 arg2 …) > > Lisp is based on some very simple ideas. Scheme started out as a > simple, disciplined dialect of Lisp. Guile is a bloated, complex, > undisciplined implementation of Scheme. Almost 2000 defined symbols > before you load libraries or user code. The manual is almost 900 > pages. The simple core is still there, but it’s hard to find through > all of the fog. This state of things is because of trying to support the new R6RS standard (and some of main Scheme distributions already support it completely [1]). However, R7RS tries to fix this breakage of simplicity by "splitting Scheme into two languanges" [2] one of which should be simple. [1] https://en.wikipedia.org/wiki/Scheme_(programming_language)#R6RS [2] https://en.wikipedia.org/wiki/Scheme_(programming_language)#R7RS Cheers, Vladimir