From: Yukihiro Matsumoto Date: 2006-03-04T11:04:15+09:00 Subject: Re: Ruby on the mobile? Hi, In message "Re: Ruby on the mobile?" on Sat, 4 Mar 2006 05:28:49 +0900, ptkwt@aracnet.com (Phil Tomson) writes: |So why does Python have more working implementations on small device platforms |than Ruby does? Probably they have separated POSIX dependent functions into modules. In contrast Ruby took all-in-one approach, so that some kind of POSIX emulation layer is required on non POSIX platform (including mobile devices). The Ruby approach is useful (no clumsy list of imports), but not the best for small devices. matz.