From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 117761 invoked by alias); 9 Nov 2017 09:35:49 -0000 Mailing-List: contact kawa-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: kawa-owner@sourceware.org Received: (qmail 117748 invoked by uid 89); 9 Nov 2017 09:35:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: Yes, score=5.1 required=5.0 tests=AWL,BAYES_00,FOREIGN_BODY1,KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 spammy=avez, vous, Japan, japan X-HELO: smtps-n.oca.eu Received: from smtps-n.oca.eu (HELO smtps-n.oca.eu) (192.54.174.167) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 09 Nov 2017 09:35:46 +0000 Received: from [192.168.109.88] (natoca100-13.unice.fr [134.59.100.13]) by smtps-n.oca.eu (Postfix) with ESMTPSA id DAB825B1F25 for ; Thu, 9 Nov 2017 10:35:43 +0100 (CET) From: Damien MATTEI To: kawa@sourceware.org Subject: Re: Kawa JTable String[][] arrays Date: Thu, 09 Nov 2017 09:35:00 -0000 User-Agent: KMail/1.9.6 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <201711091035.43692.Damien.Mattei@unice.fr> X-IsSubscribed: yes X-SW-Source: 2017-q4/txt/msg00028.txt.bz2 hello Fabian, i never use JTables in java and not sure it exists something like that in K= awa, as Scheme does not have multiple array dimensions i write some code do do i= t: https://github.com/damien-mattei/library-FunctProg/blob/master/array.scm i have test it with kawa and it works i just checked the existence of multidimension array features for scheme an= d there exists the SRFI 25 https://srfi.schemers.org/srfi-25/srfi-25.html the latest version of Kawa seems to implement it (i cannot test it on my ol= d installation): https://www.gnu.org/software/kawa/Arrays.html hope something is matching the Jtable in a compatible way. regards, damien Le Thursday 09 November 2017 10:06:13 Fabian Boucsein, vous avez =C3=A9crit= =C2=A0: > Hello fellow Kawa scheme users, >=20=20 > i am experimenting with JTables in Kawa. I'm stuck with the creation of a= n String[][] array. > Is ist possible to create one? >=20 > Something like this in Java: > String[][] rowData =3D { > { "Japan", "245" }, { "USA", "240" }, { "Italy", "220" } > } >=20=20=20 > Also i would like to say thank you, for the creation of such a pleasant t= o work with Scheme > implementation for the JVM. I love it! >=20=20 > Kind regards, > Fabian >=20