What is hard in Scheme but easy in Java? - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T01:36:52Zhttp://stackoverflow.com/feeds/question/350544http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java4What is hard in Scheme but easy in Java?Claudiu2008-12-08T19:15:31Z2009-03-14T08:39:49Z
<p>These two languages are very different. They're each well-suited to their own particular tasks. What tasks are easy to do in Java, yet are hard / require lots of ugly code to do in Scheme? Another way of putting it: what is Java better at?</p>
<p>If you can think of things that Scheme is better at, <a href="http://stackoverflow.com/questions/350541/what-is-hard-in-java-but-easy-in-scheme">see this question</a>.</p>
<p>EDIT: This pair of questions has gotten about 14 upvote/downvote pairs. It's interesting that this is so controversial. I want to make a disclaimer that I don't mean this as flamebait. </p>
http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/350669#3506692Answer by Patrick Szalapski for What is hard in Scheme but easy in Java?Patrick Szalapski2008-12-08T19:56:54Z2008-12-08T19:56:54Z<p>Everything you do in Java is hard to read in Scheme. Everything you do in Scheme is simpler than in Java--once you understand it.</p>
http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/350676#35067635Answer by stesch for What is hard in Scheme but easy in Java?stesch2008-12-08T19:58:52Z2008-12-08T19:58:52Z<p>Finding a job.</p>
http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/350692#3506925Answer by Jonathan Tran for What is hard in Scheme but easy in Java?Jonathan Tran2008-12-08T20:02:54Z2008-12-08T20:02:54Z<p><strong>Making apps that run in a web browser.</strong></p>
<p>Most people have the JRE already installed, so you can run Java code in someone's browser (the client-side), complete with JRE libraries. To run Scheme code, you have to use a Scheme interpreter written in JavaScript. JavaScript has fewer permissions because it is sanboxed more strictly. Any libraries must be included explicitly.</p>
http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/351097#3510973Answer by Pål GD for What is hard in Scheme but easy in Java?Pål GD2008-12-08T22:01:56Z2008-12-08T22:01:56Z<p>Swing makes Java one of the easiest languages to create nice GUI's fast, so, general GUI-programming.</p>
http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/353515#3535151Answer by Darron for What is hard in Scheme but easy in Java?Darron2008-12-09T17:08:09Z2008-12-09T17:08:09Z<p>Hiring a junior developer who already knows the language.</p>
http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/371292#3712921Answer by JBF for What is hard in Scheme but easy in Java?JBF2008-12-16T13:25:38Z2008-12-16T13:25:38Z<p>Using the gazillion Java libraries out there (this can be a good or a bad thing)</p>