From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: stefan.itampe@gmail.com Newsgroups: gmane.lisp.guile.devel Subject: Programming racket like in guile Date: Thu, 21 Feb 2013 21:59:17 +0100 Message-ID: <1787022.v0icS3ncxM@warperdoze> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit X-Trace: ger.gmane.org 1361483475 19920 80.91.229.3 (21 Feb 2013 21:51:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 21 Feb 2013 21:51:15 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Feb 21 22:51:37 2013 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1U8e3C-0004ks-5o for guile-devel@m.gmane.org; Thu, 21 Feb 2013 22:51:34 +0100 Original-Received: from localhost ([::1]:38371 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U8e2r-0005gl-Tr for guile-devel@m.gmane.org; Thu, 21 Feb 2013 16:51:13 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:59573) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U8e2p-0005gF-IH for guile-devel@gnu.org; Thu, 21 Feb 2013 16:51:13 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U8e2n-0001Yo-8i for guile-devel@gnu.org; Thu, 21 Feb 2013 16:51:11 -0500 Original-Received: from la-in-x0232.1e100.net ([2a00:1450:4010:c03::232]:46347 helo=mail-la0-x232.google.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U8e2n-0001Y3-1O for guile-devel@gnu.org; Thu, 21 Feb 2013 16:51:09 -0500 Original-Received: by mail-la0-f50.google.com with SMTP id ec20so2507lab.37 for ; Thu, 21 Feb 2013 13:51:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:subject:date:message-id:user-agent:mime-version :content-transfer-encoding:content-type; bh=FfShnqJXbvjTAjRvBZ86nXT8xgC0QcoZHpya2NpAuZU=; b=UooUBmp2QcJhmirm97UWyv0N/MFMkS2TU6Bj9fR0VL1Nn5yA1NbK8djwwhlWmrQW1R mShbaELGuKNYHJI9lGKS9aOqt3cf2He0cBk0Ae1RiU8pZoVh+yEv5+Uw6tP6wG09fXQ6 VUGgnzZl+iLBqx44RpZ29azH7FghtJmw+Fzz/RfS/OMUW3716DXUewaum1EjlYuyiRzg u/qFM3iWieYaHNBWK3gSyi2QzQYb1fuMvEgATE/M9BMI2Tu/yT6tqwghGjB4UcyBJdeg frN1wUpVXUcP7dWy64EO89wKoYDrFTs7Tj/IGKKmwlmdHII5DsDP0ptA23rkmIgX7Icp MhsA== X-Received: by 10.112.36.2 with SMTP id m2mr44153lbj.100.1361480360620; Thu, 21 Feb 2013 12:59:20 -0800 (PST) Original-Received: from warperdoze.localnet (1-1-1-39a.veo.vs.bostream.se. [82.182.254.46]) by mx.google.com with ESMTPS id fz10sm97103lbb.12.2013.02.21.12.59.18 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 21 Feb 2013 12:59:19 -0800 (PST) User-Agent: KMail/4.9.4 (Linux/3.5.0-24-generic; KDE/4.9.4; x86_64; ; ) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::232 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:15792 Archived-At: Dear guilers! I have spend quite a lot of work porting racket code to guile e.g. syntax-parse and the code for contracts, as a spinoff I have done several other parts as well e.g. * contracts (guile-contract) * syntax parse (guile-syntax-parse) * some support for racket lambda argumnets lambda list (guile-syntax-parse) * some support for racket structs (guile-contract) * racket matcher (guile-syntax-parse) * racket for loops (racket-loops-for-guile) * may things I have forgotten about Is there something in here that you would like to improve on or are there components in the racket codebase that you would like to have in guile so please let me know! I also suggest that for people writing compatability code that we have a standard namespace for this. Let me suggest (compat name-of-scheme/lisp component ...) e.g. (compat racket match) (compat racket for) (compat racket struct) The idea is that we push code here that is useful for porting the components that we are actually interesting to have in guile like syntax-parse. for the code that we deem so useful that we would like to push it to a more descriptive location we will of cause do that as well e.g. (syntax parse) WDYT Cheers! Stefan