From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Ayush Jha Newsgroups: gmane.lisp.guile.devel Subject: Implementing ES6 on top of Guile Date: Mon, 5 Jul 2021 16:37:47 +0545 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="8516"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane-mx.org@gnu.org Mon Jul 05 15:48:40 2021 Return-path: Envelope-to: guile-devel@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 1m0Oxc-0001d6-DF for guile-devel@m.gmane-mx.org; Mon, 05 Jul 2021 15:48:32 +0200 Original-Received: from localhost ([::1]:54902 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m0Oxb-0004xd-Bc for guile-devel@m.gmane-mx.org; Mon, 05 Jul 2021 09:48:31 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:49800) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m0MJt-0002hR-4w for guile-devel@gnu.org; Mon, 05 Jul 2021 06:59:21 -0400 Original-Received: from siyasang.com ([144.91.117.143]:51958 helo=mail.siyasang.com) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m0MJr-0001I4-MW for guile-devel@gnu.org; Mon, 05 Jul 2021 06:59:20 -0400 Original-Received: from mail.siyasang.com (localhost [127.0.0.1]) by mail.siyasang.com (Postfix) with ESMTP id 4GJMxV2c4fzDGRSm for ; Mon, 5 Jul 2021 10:53:50 +0000 (UTC) Authentication-Results: mail.siyasang.com (amavisd-new); dkim=pass reason="pass (just generated, assumed good)" header.d=siyasang.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=siyasang.com; h= content-language:content-transfer-encoding:content-type :mime-version:user-agent:date:message-id:subject:from:to; s= dkim; t=1625482415; x=1628074416; bh=4juHIQUZSW0bPFRnq7eJJg+/mMK aIy/RQcmM6oCWS/Y=; b=IAKmYwxE9s/b8I7hqqf5muuF6xVFIBcryYdpknUbjQ1 Y+Gbl4T03Q2WNxUse65SyEFYeLo5MIwS72+I/i6/XK5727PqrlhYQLvAXwnV8QdG UYb7eTV+rCP02Mb5KxC4q39phPBdxVu+oCh793dNfz+fMlGrl2gRVeHgVzKsBDLg = X-Amavis-Modified: Mail body modified (using disclaimer) - mail.siyasang.com X-Virus-Scanned: amavisd-new at mail.siyasang.com Original-Received: from mail.siyasang.com ([127.0.0.1]) by mail.siyasang.com (mail.siyasang.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 1d33xitpV6oq for ; Mon, 5 Jul 2021 10:53:35 +0000 (UTC) Original-Received: from [192.168.1.21] (unknown [103.10.28.140]) by mail.siyasang.com (Postfix) with ESMTPSA id 4GJMxB5whVzDGRT9 for ; Mon, 5 Jul 2021 10:53:34 +0000 (UTC) Content-Language: en-US Received-SPF: pass client-ip=144.91.117.143; envelope-from=ayush@siyasang.com; helo=mail.siyasang.com X-Spam_score_int: 2 X-Spam_score: 0.2 X-Spam_bar: / X-Spam_report: (0.2 / 5.0 requ) BAYES_20=-0.001, DKIM_INVALID=0.1, DKIM_SIGNED=0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Mailman-Approved-At: Mon, 05 Jul 2021 09:48:19 -0400 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.23 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-mx.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.io gmane.lisp.guile.devel:20800 Archived-At: The issue: I found an implementation of ECMAScript on Guile in the docs, and I was wondering if anyone is working on improving it/building an alternative. I would love to get started on it. What is the status of the ECMAScript implementation project as of now? My Background: I am very new to the Guile project. I have written scripts in Guile and have dabbled in the source code, but over all - I am fairly new to the project. -- Regards, Ayush Jha