Re: [Haskell-cafe] Best Linux Distro for >>=

2011-06-18 Thread Mark Wright
On Sat, 18 Jun 2011 21:46:53 -0700, Sean Perry  wrote:
> On Jun 18, 2011, at 8:48 PM, Tom Murphy wrote:
> 
> > Hi List,
> >   If my choice of Lunix distro depended 100% on its solidness as a
> > Haskell devel platform (I am), what would you all recommend?
> > 
> 
> 
> If you are going to install the haskell platform and then use Cabal it
> really does not matter. Any of the current distros work just fine.
> 
> On the other hand if you want to stick to supplied packages then you would
> be best served looking at the package lists and making your mind up from
> there.

You don't have to stick to the supplied packages though, you can
create your own.  

Arch linux:
The cabal2arch command is used to create the package, then I guess you
can submit it to the AUR database.

Gentoo:
hackport merge pkgname

Then often the only thing that is required is to edit the ebuild
and either:

(1) remove the lower range bound
or
(2) remove the upper range bound
or
(3) specify the range check to something like:
=dev-haskell/attoparsec-0.9*

As gentoo can not handle having more than 1 range check dependency in
the ebuild.  Your created ebuilds can be installed in your own overlay
if you are not ready to publish them yet, say in
/usr/local/portage/
or you can fork:

https://github.com/gentoo-haskell/gentoo-haskell

Use git rebase to rebase your commits into a linear history, and
submit a pull request (which might require tweaking to be accepted)

The Gentoo haskell overlay is currently on ghc 7.0.4 with the
latest haskell platform.  When ghc was bumped to 7.0.4 earlier
this week, I just ran:

haskell-updater

and it rebuilt hundreds of Haskell packages with the new ghc.

Gentoo supports live ebuilds.  For example, to install
Cloud Haskell from github:

emerge -a dev-haskell/remote

Normally there are other considerations on which linux distribution to use,
like:

(1) Ease of installation and maintenance of the operating system.
Gentoo is difficult to install and maintain, it requires learning to be
a Linux expert.

(2) Gentoo is a source based distribution.  This offers more flexibility,
however it also means you need a powerful machine.  For a notebook
I think it should be a games machine or workstation notebook in
order to be chunky and have good cooling.

Fedora, Debian, FreeBSD:

I don't use them, however I think they have very good support for
Haskell packaging.  For example, Fedora updates the haddock documentation
index as pkgs are installed and removed (on Gentoo you need to run your
own script manually to update the haddock documentation index.
The haddock documentation is built with these use flags: doc hscolour).

http://fedoraproject.org/wiki/Packaging:Haskell

If the os distribution is missing a package that you need, then I think
you can create and pkg it yourself.

Regards, Mark




___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Best Linux Distro for >>=

2011-06-18 Thread Ivan Lazar Miljenovic
On 19 June 2011 14:59, Arlen Cuss  wrote:
>
>> In no particular order, the following seem to have good Linux support:
>> Gentoo, Arch, Fedora and Debian (I think Testing).
>
> Please allow me to register my amusement at the idea of a distribution "with
> good Linux support". :D

Amusement registered :p

-- 
Ivan Lazar Miljenovic
ivan.miljeno...@gmail.com
IvanMiljenovic.wordpress.com

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Best Linux Distro for >>=

2011-06-18 Thread Brandon Allbery
On Sun, Jun 19, 2011 at 00:59, Arlen Cuss  wrote:
>> In no particular order, the following seem to have good Linux support:
>> Gentoo, Arch, Fedora and Debian (I think Testing).
>
> Please allow me to register my amusement at the idea of a distribution "with
> good Linux support". :D

That'd be FreeBSD.  :p

-- 
brandon s allbery                                      allber...@gmail.com
wandering unix systems administrator (available)     (412) 475-9364 vm/sms

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Best Linux Distro for >>=

2011-06-18 Thread Arlen Cuss



In no particular order, the following seem to have good Linux support:
Gentoo, Arch, Fedora and Debian (I think Testing).


Please allow me to register my amusement at the idea of a distribution 
"with good Linux support". :D


___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Best Linux Distro for >>=

2011-06-18 Thread Sean Perry
On Jun 18, 2011, at 8:48 PM, Tom Murphy wrote:

> Hi List,
>   If my choice of Lunix distro depended 100% on its solidness as a
> Haskell devel platform (I am), what would you all recommend?
> 


If you are going to install the haskell platform and then use Cabal it really 
does not matter. Any of the current distros work just fine.

On the other hand if you want to stick to supplied packages then you would be 
best served looking at the package lists and making your mind up from there.


___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Best Linux Distro for >>=

2011-06-18 Thread Ivan Lazar Miljenovic
On 19 June 2011 13:48, Tom Murphy  wrote:
> Hi List,
>   If my choice of Lunix distro depended 100% on its solidness as a
> Haskell devel platform (I am), what would you all recommend?

In no particular order, the following seem to have good Linux support:
Gentoo, Arch, Fedora and Debian (I think Testing).

-- 
Ivan Lazar Miljenovic
ivan.miljeno...@gmail.com
IvanMiljenovic.wordpress.com

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


[Haskell-cafe] Best Linux Distro for >>=

2011-06-18 Thread Tom Murphy
Hi List,
   If my choice of Lunix distro depended 100% on its solidness as a
Haskell devel platform (I am), what would you all recommend?

Thanks for your time,
Tom

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Haskell *interpreter* on iPad? (Scheme and Ocaml are there)

2011-06-18 Thread Jack Henahan
Oh, wow, I'd never seen gambitREPL, just the (pretty terrible) iScheme. That's 
pretty neat. It's probably quite doable, then, but the dev would either be 
forced into Hugs, or they'd have to implement a more portable GHC. Does such a 
thing exist already?

On Jun 18, 2011, at 3:03 PM, John Velman wrote:

> On Sat, Jun 18, 2011 at 10:44:01PM +0400, MigMit wrote:
> 
> Well, this is my point.  THERE ARE 3 SCHEME INTERPRETERS in the iPad app
> store.
> 
> They run on factory iPads, not jailbroken.
> 
> The GUI for the gambitREPL  (Read, Evaluate, Print, Loop) is just like a
> console.   Input a scheme expression.  CR. Answer appears, new prompt.
> 
> In haskell we need to allow for some way to input layout.  I don't recall
> how Hugs handles this, if at all.
> 
> There are probably 5 or 10 people out there who want to learn functional
> programming, and they are studying Scheme on their iPads.  Or Ocaml.
> 
> I don't forsee doing production programming ON THE IPAD, but experimenting,
> testing some functions, and, by the way, learning Haskell.
> 
> While I'm fantasizing, something like Hugs or ghci with SOE would really be
> neat.
> 
> Sorry for shouting  :-)
> 
> John Velman
> 
>> Well, Haskell is fun, isn't it? And that's what iPhone is perfect for: fun.
>> 
>> Back when I had iPod Touch 1G (jailbroken, of course), I used to run Hugs on 
>> it. Now I would love to see a Haskell interpreter in the App Store — which, 
>> by the way, is possible; as there are Scheme interpreters there, why not 
>> Haskell?
>> 
>> Отправлено с iPhone
>> 
>> Jun 18, 2011, в 22:27, Jack Henahan  написал(а):
>> 
>>> I suppose you could make a GUI, by why? Given that you'll have to be 
>>> working on a jailbroken device, anyway, one could just as well use one of 
>>> the numerous terminal emulators now floating around for jailbroken iOS. 
>>> That said, the idea of people writing Haskell on phones and iPads and so on 
>>> makes me just a little bit grinny.
>>> 
>>> On Jun 18, 2011, at 2:17 PM, Alexander Solla wrote:
>>> 
 
 
 On Sat, Jun 18, 2011 at 10:46 AM, John Velman  wrote:
 To further emphasize, I'd like to type in (or paste in) Haskell code and
 have it executed on the iPad.  To reiterate:  Something like Hugs, or ghci
 on the iPad.
 
 Since the iPhone OS is pretty much OS X for ARM, and GHC apparently now 
 supports cross-compilation, you can compile GHC for iOS.  I guess you 
 could cross compile Hugs with GCC.  Doing so probably isn't trivial, but 
 it should be straightforward.
 
 I bet you could even use Xcode to make a graphical user interface to GHCi.
 ___
 Haskell-Cafe mailing list
 Haskell-Cafe@haskell.org
 http://www.haskell.org/mailman/listinfo/haskell-cafe
>>> 
>>> ___
>>> Haskell-Cafe mailing list
>>> Haskell-Cafe@haskell.org
>>> http://www.haskell.org/mailman/listinfo/haskell-cafe
> 
> ___
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe


___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Haskell *interpreter* on iPad? (Scheme and Ocaml are there)

2011-06-18 Thread Don Stewart
Oh, Scheme is trivial to implement, when compared with Haskell. So
people write it from scratch as a tutorial exercise.

Haskell isn't trivial to implement from scratch, so instead we port
existing implementations mostly.

That means really, porting Hugs or GHC. And you've been pointed at examples.

I think people are clearly keen for this, now it is a small matter of
programming talent and will.

-- Don

On Sat, Jun 18, 2011 at 3:03 PM, John Velman  wrote:
> On Sat, Jun 18, 2011 at 10:44:01PM +0400, MigMit wrote:
>
> Well, this is my point.  THERE ARE 3 SCHEME INTERPRETERS in the iPad app
> store.
>
> They run on factory iPads, not jailbroken.
>
> The GUI for the gambitREPL  (Read, Evaluate, Print, Loop) is just like a
> console.   Input a scheme expression.  CR. Answer appears, new prompt.
>
> In haskell we need to allow for some way to input layout.  I don't recall
> how Hugs handles this, if at all.
>
> There are probably 5 or 10 people out there who want to learn functional
> programming, and they are studying Scheme on their iPads.  Or Ocaml.
>
> I don't forsee doing production programming ON THE IPAD, but experimenting,
> testing some functions, and, by the way, learning Haskell.
>
> While I'm fantasizing, something like Hugs or ghci with SOE would really be
> neat.
>
> Sorry for shouting  :-)
>
> John Velman
>
>> Well, Haskell is fun, isn't it? And that's what iPhone is perfect for: fun.
>>
>> Back when I had iPod Touch 1G (jailbroken, of course), I used to run Hugs on 
>> it. Now I would love to see a Haskell interpreter in the App Store -- which, 
>> by the way, is possible; as there are Scheme interpreters there, why not 
>> Haskell?
>>
>> Отправлено с iPhone
>>
>> Jun 18, 2011, в 22:27, Jack Henahan  написал(а):
>>
>> > I suppose you could make a GUI, by why? Given that you'll have to be 
>> > working on a jailbroken device, anyway, one could just as well use one of 
>> > the numerous terminal emulators now floating around for jailbroken iOS. 
>> > That said, the idea of people writing Haskell on phones and iPads and so 
>> > on makes me just a little bit grinny.
>> >
>> > On Jun 18, 2011, at 2:17 PM, Alexander Solla wrote:
>> >
>> >>
>> >>
>> >> On Sat, Jun 18, 2011 at 10:46 AM, John Velman  wrote:
>> >> To further emphasize, I'd like to type in (or paste in) Haskell code and
>> >> have it executed on the iPad.  To reiterate:  Something like Hugs, or ghci
>> >> on the iPad.
>> >>
>> >> Since the iPhone OS is pretty much OS X for ARM, and GHC apparently now 
>> >> supports cross-compilation, you can compile GHC for iOS.  I guess you 
>> >> could cross compile Hugs with GCC.  Doing so probably isn't trivial, but 
>> >> it should be straightforward.
>> >>
>> >> I bet you could even use Xcode to make a graphical user interface to GHCi.
>> >> ___
>> >> Haskell-Cafe mailing list
>> >> Haskell-Cafe@haskell.org
>> >> http://www.haskell.org/mailman/listinfo/haskell-cafe
>> >
>> > ___
>> > Haskell-Cafe mailing list
>> > Haskell-Cafe@haskell.org
>> > http://www.haskell.org/mailman/listinfo/haskell-cafe
>
> ___
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
>

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Haskell *interpreter* on iPad? (Scheme and Ocaml are there)

2011-06-18 Thread John Velman
On Sat, Jun 18, 2011 at 10:44:01PM +0400, MigMit wrote:

Well, this is my point.  THERE ARE 3 SCHEME INTERPRETERS in the iPad app
store.

They run on factory iPads, not jailbroken.

The GUI for the gambitREPL  (Read, Evaluate, Print, Loop) is just like a
console.   Input a scheme expression.  CR. Answer appears, new prompt.

In haskell we need to allow for some way to input layout.  I don't recall
how Hugs handles this, if at all.

There are probably 5 or 10 people out there who want to learn functional
programming, and they are studying Scheme on their iPads.  Or Ocaml.

I don't forsee doing production programming ON THE IPAD, but experimenting,
testing some functions, and, by the way, learning Haskell.

While I'm fantasizing, something like Hugs or ghci with SOE would really be
neat.

Sorry for shouting  :-)

John Velman

> Well, Haskell is fun, isn't it? And that's what iPhone is perfect for: fun.
> 
> Back when I had iPod Touch 1G (jailbroken, of course), I used to run Hugs on 
> it. Now I would love to see a Haskell interpreter in the App Store — which, 
> by the way, is possible; as there are Scheme interpreters there, why not 
> Haskell?
> 
> Отправлено с iPhone
> 
> Jun 18, 2011, в 22:27, Jack Henahan  написал(а):
> 
> > I suppose you could make a GUI, by why? Given that you'll have to be 
> > working on a jailbroken device, anyway, one could just as well use one of 
> > the numerous terminal emulators now floating around for jailbroken iOS. 
> > That said, the idea of people writing Haskell on phones and iPads and so on 
> > makes me just a little bit grinny.
> > 
> > On Jun 18, 2011, at 2:17 PM, Alexander Solla wrote:
> > 
> >> 
> >> 
> >> On Sat, Jun 18, 2011 at 10:46 AM, John Velman  wrote:
> >> To further emphasize, I'd like to type in (or paste in) Haskell code and
> >> have it executed on the iPad.  To reiterate:  Something like Hugs, or ghci
> >> on the iPad.
> >> 
> >> Since the iPhone OS is pretty much OS X for ARM, and GHC apparently now 
> >> supports cross-compilation, you can compile GHC for iOS.  I guess you 
> >> could cross compile Hugs with GCC.  Doing so probably isn't trivial, but 
> >> it should be straightforward.
> >> 
> >> I bet you could even use Xcode to make a graphical user interface to GHCi.
> >> ___
> >> Haskell-Cafe mailing list
> >> Haskell-Cafe@haskell.org
> >> http://www.haskell.org/mailman/listinfo/haskell-cafe
> > 
> > ___
> > Haskell-Cafe mailing list
> > Haskell-Cafe@haskell.org
> > http://www.haskell.org/mailman/listinfo/haskell-cafe

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Haskell *interpreter* on iPad? (Scheme and Ocaml are there)

2011-06-18 Thread MigMit
Well, Haskell is fun, isn't it? And that's what iPhone is perfect for: fun.

Back when I had iPod Touch 1G (jailbroken, of course), I used to run Hugs on 
it. Now I would love to see a Haskell interpreter in the App Store — which, by 
the way, is possible; as there are Scheme interpreters there, why not Haskell?

Отправлено с iPhone

Jun 18, 2011, в 22:27, Jack Henahan  написал(а):

> I suppose you could make a GUI, by why? Given that you'll have to be working 
> on a jailbroken device, anyway, one could just as well use one of the 
> numerous terminal emulators now floating around for jailbroken iOS. That 
> said, the idea of people writing Haskell on phones and iPads and so on makes 
> me just a little bit grinny.
> 
> On Jun 18, 2011, at 2:17 PM, Alexander Solla wrote:
> 
>> 
>> 
>> On Sat, Jun 18, 2011 at 10:46 AM, John Velman  wrote:
>> To further emphasize, I'd like to type in (or paste in) Haskell code and
>> have it executed on the iPad.  To reiterate:  Something like Hugs, or ghci
>> on the iPad.
>> 
>> Since the iPhone OS is pretty much OS X for ARM, and GHC apparently now 
>> supports cross-compilation, you can compile GHC for iOS.  I guess you could 
>> cross compile Hugs with GCC.  Doing so probably isn't trivial, but it should 
>> be straightforward.
>> 
>> I bet you could even use Xcode to make a graphical user interface to GHCi.
>> ___
>> Haskell-Cafe mailing list
>> Haskell-Cafe@haskell.org
>> http://www.haskell.org/mailman/listinfo/haskell-cafe
> 
> ___
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Haskell *interpreter* on iPad? (Scheme and Ocaml are there)

2011-06-18 Thread Jack Henahan
I suppose you could make a GUI, by why? Given that you'll have to be working on 
a jailbroken device, anyway, one could just as well use one of the numerous 
terminal emulators now floating around for jailbroken iOS. That said, the idea 
of people writing Haskell on phones and iPads and so on makes me just a little 
bit grinny.

On Jun 18, 2011, at 2:17 PM, Alexander Solla wrote:

> 
> 
> On Sat, Jun 18, 2011 at 10:46 AM, John Velman  wrote:
> To further emphasize, I'd like to type in (or paste in) Haskell code and
> have it executed on the iPad.  To reiterate:  Something like Hugs, or ghci
> on the iPad.
> 
> Since the iPhone OS is pretty much OS X for ARM, and GHC apparently now 
> supports cross-compilation, you can compile GHC for iOS.  I guess you could 
> cross compile Hugs with GCC.  Doing so probably isn't trivial, but it should 
> be straightforward.
> 
> I bet you could even use Xcode to make a graphical user interface to GHCi.
> ___
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Haskell *interpreter* on iPad? (Scheme and Ocaml are there)

2011-06-18 Thread Alexander Solla
On Sat, Jun 18, 2011 at 10:46 AM, John Velman  wrote:
>
> To further emphasize, I'd like to type in (or paste in) Haskell code and
> have it executed on the iPad.  To reiterate:  Something like Hugs, or ghci
> on the iPad.


Since the iPhone OS is pretty much OS X for ARM, and GHC apparently now
supports cross-compilation, you can compile GHC for iOS.  I guess you could
cross compile Hugs with GCC.  Doing so probably isn't trivial, but it should
be straightforward.

I bet you could even use Xcode to make a graphical user interface to GHCi.
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Haskell *interpreter* on iPad? (Scheme and Ocaml are there)

2011-06-18 Thread Don Stewart
See also the cloud: http://tryhaskell.org

:-)

On Sat, Jun 18, 2011 at 1:46 PM, John Velman  wrote:

> Well, I'm not interested in a lisp interpreter written in Haskell.  Nor am
> I (at the moment) interested in writing an iPad app in Haskell.
>
> I changed the subject to clarify.
>
> What I would like to see is A Haskell Interpreter on the iPad.
>
> To further emphasize, I'd like to type in (or paste in) Haskell code and
> have it executed on the iPad.  To reiterate:  Something like Hugs, or ghci
> on the iPad.
>
> By the way, there are three Scheme interpreters in the iPad app store.  In
> addition to the two I previously mentioned, there is iScheme.
>
> - John Velman
>
>
>
> On Sat, Jun 18, 2011 at 12:43:45PM -0400, Don Stewart wrote:
> > See e.g.
> >
> > http://www.haskell.org/haskellwiki/IPhone
> >
> > 
> > https://github.com/dpp/LispHaskellIPad
> >
> > 
> >
> > On Sat, Jun 18, 2011 at 12:18 PM, John Velman  wrote:
> >
> > >
> > > There are (at least) two Scheme interpreters for iPad at the iTunes
> store:
> > > PixieScheme and GambitREPL.  Both allow entry of scripts, by typing or
> > > pasting.  The Gambit community is very busy trying to expand the
> usefulness
> > > of their interpreter.  Both have pretty good interfaces.
> > >
> > > There is also an Ocaml app, but I don't know or want to know Ocaml, and
> the
> > > interface looks very unfriendly.
> > >
> > > I'd really like to have something like this in Haskell, in the
> "education"
> > > pot, as is the GambitREPL.  Hugs is written in C, if I recall
> correctly.
> > > Would it be possible to compile Hugs for the iPad processor, taking out
> > > enough system calls to make it acceptable?
> > >
> > > John Velman
> > >
> > > ___
> > > Haskell-Cafe mailing list
> > > Haskell-Cafe@haskell.org
> > > http://www.haskell.org/mailman/listinfo/haskell-cafe
> > >
>
> ___
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
>
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Haskell *interpreter* on iPad? (Scheme and Ocaml are there)

2011-06-18 Thread John Velman
Well, I'm not interested in a lisp interpreter written in Haskell.  Nor am
I (at the moment) interested in writing an iPad app in Haskell.

I changed the subject to clarify.

What I would like to see is A Haskell Interpreter on the iPad.  

To further emphasize, I'd like to type in (or paste in) Haskell code and
have it executed on the iPad.  To reiterate:  Something like Hugs, or ghci
on the iPad.

By the way, there are three Scheme interpreters in the iPad app store.  In
addition to the two I previously mentioned, there is iScheme.

- John Velman



On Sat, Jun 18, 2011 at 12:43:45PM -0400, Don Stewart wrote:
> See e.g.
> 
> http://www.haskell.org/haskellwiki/IPhone
> 
> 
> https://github.com/dpp/LispHaskellIPad
> 
> 
> 
> On Sat, Jun 18, 2011 at 12:18 PM, John Velman  wrote:
> 
> >
> > There are (at least) two Scheme interpreters for iPad at the iTunes store:
> > PixieScheme and GambitREPL.  Both allow entry of scripts, by typing or
> > pasting.  The Gambit community is very busy trying to expand the usefulness
> > of their interpreter.  Both have pretty good interfaces.
> >
> > There is also an Ocaml app, but I don't know or want to know Ocaml, and the
> > interface looks very unfriendly.
> >
> > I'd really like to have something like this in Haskell, in the "education"
> > pot, as is the GambitREPL.  Hugs is written in C, if I recall correctly.
> > Would it be possible to compile Hugs for the iPad processor, taking out
> > enough system calls to make it acceptable?
> >
> > John Velman
> >
> > ___
> > Haskell-Cafe mailing list
> > Haskell-Cafe@haskell.org
> > http://www.haskell.org/mailman/listinfo/haskell-cafe
> >

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


Re: [Haskell-cafe] Haskell on iPad? (Scheme and Ocaml are there)

2011-06-18 Thread Don Stewart
See e.g.

http://www.haskell.org/haskellwiki/IPhone


https://github.com/dpp/LispHaskellIPad



On Sat, Jun 18, 2011 at 12:18 PM, John Velman  wrote:

>
> There are (at least) two Scheme interpreters for iPad at the iTunes store:
> PixieScheme and GambitREPL.  Both allow entry of scripts, by typing or
> pasting.  The Gambit community is very busy trying to expand the usefulness
> of their interpreter.  Both have pretty good interfaces.
>
> There is also an Ocaml app, but I don't know or want to know Ocaml, and the
> interface looks very unfriendly.
>
> I'd really like to have something like this in Haskell, in the "education"
> pot, as is the GambitREPL.  Hugs is written in C, if I recall correctly.
> Would it be possible to compile Hugs for the iPad processor, taking out
> enough system calls to make it acceptable?
>
> John Velman
>
> ___
> Haskell-Cafe mailing list
> Haskell-Cafe@haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
>
___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe


[Haskell-cafe] Haskell on iPad? (Scheme and Ocaml are there)

2011-06-18 Thread John Velman

There are (at least) two Scheme interpreters for iPad at the iTunes store:
PixieScheme and GambitREPL.  Both allow entry of scripts, by typing or
pasting.  The Gambit community is very busy trying to expand the usefulness
of their interpreter.  Both have pretty good interfaces.

There is also an Ocaml app, but I don't know or want to know Ocaml, and the
interface looks very unfriendly.

I'd really like to have something like this in Haskell, in the "education"
pot, as is the GambitREPL.  Hugs is written in C, if I recall correctly.
Would it be possible to compile Hugs for the iPad processor, taking out
enough system calls to make it acceptable?

John Velman

___
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe