From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: =?ISO-8859-1?Q?J=E9r=E9my?= Korwin-Zmijowski Newsgroups: gmane.lisp.guile.user Subject: Re: How to use guile in a development process Date: Thu, 29 Apr 2021 16:49:07 +0200 Message-ID: <3a3a34ab9b8aff4b860ec838e5298eb90c137e81.camel@korwin-zmijowski.fr> References: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="30375"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Evolution 3.36.4-0ubuntu1 To: Anthony Quizon , guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Thu Apr 29 16:49:26 2021 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lc7yn-0007it-R0 for guile-user@m.gmane-mx.org; Thu, 29 Apr 2021 16:49:25 +0200 Original-Received: from localhost ([::1]:37622 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lc7ym-0007XF-T5 for guile-user@m.gmane-mx.org; Thu, 29 Apr 2021 10:49:24 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:51798) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lc7yd-0007X4-7p for guile-user@gnu.org; Thu, 29 Apr 2021 10:49:15 -0400 Original-Received: from relay8-d.mail.gandi.net ([217.70.183.201]:53891) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lc7yb-0000CH-75 for guile-user@gnu.org; Thu, 29 Apr 2021 10:49:14 -0400 X-Originating-IP: 83.118.200.115 Original-Received: from elite (unknown [83.118.200.115]) (Authenticated sender: jeremy@korwin-zmijowski.fr) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id 475831BF208; Thu, 29 Apr 2021 14:49:08 +0000 (UTC) In-Reply-To: Received-SPF: none client-ip=217.70.183.201; envelope-from=jeremy@korwin-zmijowski.fr; helo=relay8-d.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.io gmane.lisp.guile.user:17472 Archived-At: Le jeudi 29 avril 2021 à 10:35 +1000, Anthony Quizon a écrit : > But more importantly, what is the typical workflow when using guile? > Do people write files to the filesystem and load them in the repl to > try it > out? I think there is not anything typical in the Guile community. I usually execute Guile scripts from the command line and I use the REPL for exploratory work only. But I feel I should use the REPL more than I do. I am reading all I can find about REPL practices to find inspiration. I follow the TDD workflow. So I run my test harness this way : $ guile -L . tests/xxxx-test.scm I fire this command anytime I change a file using a watch-based script. I edit code using Emacs and its Geiser extension to explore Guile features. > Or is there a faster way to do things? Automation. haha P.S: would you like to join me to code together so I can show what I wrote above ? We could pair-program for 1h :-) Cheers, Jérémy