What is hard in Scheme but easy in Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T01:36:52Z http://stackoverflow.com/feeds/question/350544 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java 4 What is hard in Scheme but easy in Java? Claudiu 2008-12-08T19:15:31Z 2009-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#350669 2 Answer by Patrick Szalapski for What is hard in Scheme but easy in Java? Patrick Szalapski 2008-12-08T19:56:54Z 2008-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#350676 35 Answer by stesch for What is hard in Scheme but easy in Java? stesch 2008-12-08T19:58:52Z 2008-12-08T19:58:52Z <p>Finding a job.</p> http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/350692#350692 5 Answer by Jonathan Tran for What is hard in Scheme but easy in Java? Jonathan Tran 2008-12-08T20:02:54Z 2008-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#351097 3 Answer by Pål GD for What is hard in Scheme but easy in Java? Pål GD 2008-12-08T22:01:56Z 2008-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#353515 1 Answer by Darron for What is hard in Scheme but easy in Java? Darron 2008-12-09T17:08:09Z 2008-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#371292 1 Answer by JBF for What is hard in Scheme but easy in Java? JBF 2008-12-16T13:25:38Z 2008-12-16T13:25:38Z <p>Using the gazillion Java libraries out there (this can be a good or a bad thing)</p>