More languages!

Add a reply

Posted by twifkak 795 days ago:
I'd be interested to see Haskell and J kick every other language's butts. I'd actually use Haskell, if given the option.
Posted by zeriod 794 days ago:
I asked for Scheme, but if you want Haskell pester carldr on IRC
Posted by jojo 792 days ago:
I asked for Scheme, but if you want Haskell pester carldr on IRC

i will learn any language, especially if it turns out be good for codegolf. however, i would prefer to learn scheme than haskell, because i know that many gnu projects use scheme, whereas i am not aware of any major non-academic projects using haskell. i might be wrong.

previously on irc i have suggested postscript. i think it is more useful than forth and would be interesting because it is postfix.

i slightly prefer the scheme suggestion to postscript, however, because i suspect that scheme would be more popular. (neither scheme nor postscript are likely to be very popular, or to win any challenges overall, but there are challenges that they will be relatively good at.)
Posted by Sartak 792 days ago:
i am not aware of any major non-academic projects using haskell. i might be wrong.

Pugs (an implementation of Perl6) is probably the best known non-academic project that uses Haskell.
Posted by twifkak 787 days ago:
Darcs, a version control system, is another.

Plus, it'd be a really interesting codegolf language. Good? Not sure -- I'm pretty new to it. You know, it can do things like map (**2) [1..5], but it might get tripped up in all that input/output handling. Monads.
Posted by tstrokes 783 days ago:
I'd like to see how io (http://www.iolanguage.com/) or Lua (http://www.lua.org/) stack up against ruby, and python.
--Tstrokes
Posted by Ciaran 781 days ago:
Lua is nice but it would not work well because the base language is so sparse, all the functionality comes from the libraries.
Posted by key 781 days ago:
some of these text-heavy challenges made me remember fondly the good old days when I was doing a lot of AWK scripting. That would be a good golf language.
Posted by pbx 723 days ago:
I second the suggestions of Scheme and Haskell and Io. (Lua would be fine too, though I agree about the library issue.)
Posted by krokofant 631 days ago:
Add Java please! With the sun jdk if possible.
Posted by parad0x 564 days ago:
I third the suggestion of Haskell.
Posted by mmiller 497 days ago:
I heard about Code Golf on the Squeak developer list. Someone thought we could submit Smalltalk code here. I found out he was wrong. Any possibility of adding Smalltalk? From what I understand GNU Smalltalk has the best scripting support right now, of the different implementations. I've heard there's a way to run scripts through Squeak (another open implementation of Smalltalk), but I have no idea how well that would work on here.
Posted by mcandre 426 days ago:
Lua works well enough. I have a solution to the Joy of ASCII challenge in it, but no way to submit it. Please add Lua to the list!
Posted by toxik 360 days ago:
I don't think there'll be any compiled languages in a close future. (Haskell and Java are two which I'm thinking of.)

Then again I'm in no way any authority, but if I understood the workings correctly, that'd be too tough to implement in a sane way.
Posted by tgoddard 350 days ago:
Haskell can be interpreted. The runhaskell script will do what it says. While not as concise as perl, here's an example of the Roman numerals script in Haskell (135 characters):

e(c:j)n m f v|v==c=n
|1<2=e j(n*m)f m v
q x(y,l)|x<l=(y-x,l)
|1<2=(x+y,x)
main=getLine>>=return.fst.foldr q(0,0).map(e"IVXLCDM"1 5 2)


Note: it looks like this forum strips leading spaces even in code blocks. There is a space in front of the second and fourth lines (this is required).
Posted by eyepopslikeamosquito 349 days ago:
Notice that shinh's golf site (under construction) supports 52 languages, including Haskell, Java and probably all the others asked for.
Posted by pierre 348 days ago:
Haskell certainly will be a great option
Posted by mattj 330 days ago:
Could we get perl 5.10 please? Being able to use ~~ would be very useful... ;-)
Posted by hallvabo 176 days ago:
If Scheme (or any of the other major Lisp variants) was one of the featured languages on codegolf.com, it would certainly be a great incentive and motivation for learning Lisp.

But I guess that may be said about any language...
Posted by Darkimmortal 56 days ago:
Javascript.

Now that would be awesome :D
Posted by boost 28 days ago:
I'd like to put in a vote for Euphoria. It's open source now. There are ports for Windows, DOS, Linux and FreeBSD.

--boost
Posted by boost 28 days ago:
Dare I suggest VBScript?

Add a reply