Questions comparing two or more programming or markup languages against each other.

learn more… | top users | synonyms

0
votes
5answers
100 views

Are THEN and END IF the exact equivalent of curly brackets

Does the compiler see the same thing when it sees THEN...END IF(in Vb) and { ... }(in C#) which are what seems to be delimiting If statements. If they are treated the same way, why can I do this in ...
3
votes
3answers
97 views

c++ wchar array to c#

I have no knowledge of C++ and I have to cenvert some code to C#. I've managed to do some bits but I don't really understand how to convert a few lines so I'm here asking for help. This is the C++ ...
38
votes
7answers
2k views

Why is C++ said to be an unsafe language, while C# is a safe one? [duplicate]

Possible Duplicate: What defines a “safe” programming language/framework? I read in various places that C++ is an unsafe language while C# is a safe one. What do these terms mean exactly? ...
2
votes
3answers
146 views

Can collections be “opened” inside function signature declaration?

Can the following type T be defined formally in Haskell or another functional language? Type T contains functions that, given a collection (i.e., a set) of objects from X, assign a number to each ...
2
votes
4answers
251 views

Python equivalent of Ruby's expresion: “puts x += value”

For curiosity's sake... In Ruby: =>$ irb 1.8.7 :001 > puts x = 2 2 => nil 1.8.7 :002 > puts x += 2 while x < 40 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 It's quite ...
3
votes
6answers
168 views

c++ overloading operators difference between == and <

so could anybody explain me what is the difference between overload == and < i could not understand.. for example if I use a map map<Type, int> a(); friend bool operator<(const ...
1
vote
2answers
144 views

Questions regarding the comparison of Python and C++ (and similar languages) [closed]

I enjoy Python due to how "user-friendly" it is (you can write and execute consecutively), unlike how you must build/compile in C++. What I'm wondering is what did Python forfeit in order to be so ...
0
votes
0answers
28 views

Which language is good for small and large client server application?

This is a question from http://wrangle.in/viewtopic.aspx?id=aajaalbe1mix Is it myth or true that Adv java is used for secure application . Php and asp.net used for application with good user ...
0
votes
2answers
578 views

Comparing Lua with Mono [closed]

I wanted to do some research but i could not find any information about this topic. The only information that i found -> ...
0
votes
0answers
121 views

(objective) C side by side translations / comparison to another language

The language comparison / translation on the Dart language website helped me tremendously in learning javascript even though I did not know either Dart or Javascript much! link, ...
3
votes
2answers
241 views

Is there a guide to Ch, CINT or Pike for C/C++ programmers?

I've recently become interested in the following interpreters for C++/C-based languages: CINT Pike Ch Standard Edition (perhaps with ChSciTE as the IDE) Is there a good guide to the differences ...
17
votes
2answers
476 views

What are the differences between the type inference of Scala and C++11?

I'm curious what the differences between the type inference of Scala and C++11 are. In which situations do I have to specify the types in one language but not in the other? One difference seems to be ...
0
votes
0answers
60 views

What is the overhead for a try catch block in C++ and does it vary with the number of catches? [duplicate]

Possible Duplicate: In what ways do C++ exceptions slow down code when there are no exceptions thown? In C++, what is the overhead imposed by a try catch block in C++ for the case that no ...
0
votes
1answer
197 views

What is a comparison of famous programming languages in regard of those aspects? [closed]

What is a comparison of famous programming languages in regard of library availability, ease to find/install a new library and community support?
3
votes
2answers
104 views

good references for comparing languages?

I'm familiar with several computer languages (Java, C, C++, Python, Scheme, Javascript) but am only vaguely with the terminology for analyzing and comparing them (things like dynamic/static binding, ...
0
votes
0answers
386 views

Scripting Language vs. Java and C++ [closed]

I was looking at some computer science videos on Khan Academy out of interest. Although Sal's videos aren't as extensive in there coverage as Stanford Engineering Everywhere, he is covering python, so ...
0
votes
3answers
85 views

Is there a full stack programming language/compiler? [closed]

I wonder whether there are programming languages that have all the required features for any kind of development - be it a desktop GUI or a service or a web application. Can anybody name a few ...
6
votes
6answers
610 views

How does PHP compare with the .NET languages? [closed]

This is just an interest question really - I am a student on a summer placement and have been doing a project over the last few weeks. I was tasked with designing a web-based interface for an SQL ...
9
votes
4answers
717 views

What is the difference between Java's equals() and C++'s operator ==?

In a question regarding the use of typeid is C++, I suggested it could be used to compare types in objects comparison. I haven't seen it done much, but I had Java's equals in mind. Looking into Java ...
13
votes
6answers
6k views

Learning an additional functional language: Clojure vs. Erlang?

Being a C++/ F-Sharp-Programmer, I am currently considering learning yet another functional language. What do you guys think would be a better option to learn: Clojure or Erlang? Both languages seem ...
0
votes
2answers
97 views

If you had to recode facebook, would you use a lamp architecture? [closed]

I know this question is quite subjective but I need to ask it to see what people think about that. If 'tomorrow' you wanted to reinvent a social network with some public/private rights, chat and most ...
10
votes
5answers
587 views

What are the main differences of language features between Haskell and the functional part of F#? [duplicate]

Possible Duplicate: What are the primary differences between Haskell and F#? What can I do in Haskell and can't do in F# (only it's functional part) if I will look only at language features ...
21
votes
5answers
2k views

Is Clojure or Haskell better for making command line tools?

I make a lot of command line tools for myself in Ruby (instead of bash), but now I'm interested in learning either Clojure or Haskell or both. And since I write a lot of unix command line tools and ...
11
votes
11answers
5k views

What advantages does modern Fortran have over modern C++? [closed]

I'm trying to decide between Fortran and C++ for an application in scientific computing. It's not clear to me if Fortran still has advantages over other languages when it comes to performance. For ...
2
votes
6answers
604 views

What are the advantages of developing applications in C++ as compared to managed languages?

Hi I want to know why people develop library applications and employee management applications in C++ (this application, for example), when clearly the same thing can be done in C# and VB.NET in a ...
23
votes
9answers
4k views

Is Haskell a Lisp? [closed]

I've been reading The Haskell Road to Logic, Maths and Programming by Doets and Eijck 2004. It seems to be a well respected book, but I was struck when it claims that Haskell is a member of the Lisp ...
22
votes
3answers
2k views

How does Clojure STM differ from Haskell STM?

I am trying to find the differences between what Clojure calls an STM and what is implemented in Haskell as STM. Taking the actual language semantic differences aside I am a little confused as Rich ...
5
votes
7answers
241 views

How active is 'programming language X' or 'runtime Y'? [closed]

Suppose I want to compare Java and C#, and am interesting in how much development (or new development) is performed using these languages. Where is a good site to find this? Edit - Also interesting ...
2
votes
4answers
2k views

Mono c# vs c++ in opengl game development?

Which of these languages is better for opengl game with primary platform linux? I would like if you compared them in performance and libraries support.
31
votes
6answers
3k views

Disadvantages of Scala type system versus Haskell?

I have read that Scala's type system is weakened by Java interoperability and therefore cannot perform some of the same powers as Haskell's type system. Is this true? Is the weakness because of type ...
10
votes
1answer
738 views

Type classes in Scala

Having a background in Haskell I am currently trying to get familiar with Scala. I encountered some problems trying to translate a small, extensible expression language from Haskell into Scala. The ...
-1
votes
4answers
5k views

ASP.NET vs C# (comparison) [closed]

What is the difference between ASP.NET and C#? Is ASP.NET better than C#? And which language has a better labor market?
25
votes
7answers
676 views

Design Patterns, A New Criterion for Comparing Languages? [closed]

I've been reading through Code Complete, and I just got to the part about Design Patterns. I thought I'd see what questions were popular and tagged design-patterns. I was reading this question, and I ...
0
votes
3answers
1k views

what is difference between C# and vb.net [duplicate]

Possible Duplicate: What are the most important functional differences between C# and VB.NET? What are the basic difference between c# and VB.net?
76
votes
3answers
7k views

D versus Go comparison

It would be interesting to contrast these two new languages by several aspects: What are their design influences? Where do they intersect in their goals / where do they rival? Where are they ...
11
votes
8answers
4k views

Comparison of Groovy and Scala against Java [closed]

I have recently come across the languages Groovy and Scala which are built on the JVM. But I dont know much beyond that. Are those languages going to overtake Java at some point? Do these languages ...
19
votes
11answers
5k views

Why do Java programmers love Scala and shy away from Clojure? [closed]

I've just started to learn Clojure by reading some tutorials and watching every presentation by Rich Hickey, and I'm totally impressed by the language... so different from any C-like language ...
35
votes
2answers
13k views

Go Language Compared to Python [closed]

I am interested in hearing the differences between Go and Python and reading an overview of the similarities. I know that Google has heavy usage of Python and Go looks to be a bit related.
6
votes
4answers
3k views

Iterate a format string over a list

In Lisp, you can have something like this: (setf my-stuff '(1 2 "Foo" 34 42 "Ni" 12 14 "Blue")) (format t "~{~d ~r ~s~%~}" my-stuff) What would be the most Pythonic way to iterate over that same ...
6
votes
1answer
325 views

Verbally format a number in Python

How do pythonistas print a number as words, like the equivalent of the Common Lisp code: [3]> (format t "~r" 1e25) nine septillion, nine hundred and ninety-nine sextillion, nine hundred and ...
16
votes
15answers
2k views

Bash scripting “common gotchas” for Python/Perl/Ruby programmers

Background: I grew up on using Perl/Python/Ruby for sysadmin-type tasks and shell scripting. I always avoided Bash scripting whenever I needed anything programmer-ish, like functions, looping or ...
1
vote
3answers
454 views

Language feature comparison: Java to C++ [closed]

I have a need to learn the stuff that James Gosling took out of C/C++ to make Java. For example: The way you can't overload operators in Java. The way you can't have multiple-inheritance in Java. ...
13
votes
6answers
8k views

What types of projects is Mathematica good for? [closed]

I once saw a dismal comparison of Matlab vs Mathematica. As you can see Matlab achieves the same with very little code. It looks highly efficient to an untrained eye, so I ask, what types of projects ...
1
vote
3answers
111 views

Passing an array for setting variable

I often see this idiom when reading php code: public function __construct($config) { if (array_key_exists('options', $config)) { ... } if (array_key_exists('driver_options', ...
6
votes
8answers
1k views

EE Major : Should I learn Ruby on Rails or Haskell?

I've just completed my freshman year in college and am majoring in EE (with a lot of interest in CS as well) . I know some Python,C/C++ and Java and also a little bit of Actionscript . I am planning ...
28
votes
12answers
8k views

Want to add a functional language to my toolchest. Haskell or Erlang? [closed]

I've been an OO/procedural guy my whole career except in school where I did a lot of logic programming (Prolog). I work on an amazing variety of projects (freelancer) and so I don't want the tools I ...
4
votes
3answers
733 views

What is the equivalent in PHP for Python's pass statement?

Do you know any PHP statement that works like Python's pass statement?
47
votes
10answers
9k views

Yet another Haskell vs. Scala question [closed]

I've been using Haskell for several months, and I love it—it's gradually become my tool of choice for everything from one-off file renaming scripts to larger XML processing programs. I'm definitely ...
1
vote
4answers
500 views

Python features

Is there any article/paper on what features the Python language has to offer? Why should one go with Python instead of any other language? What are the strong and the weak points of Python?
9
votes
6answers
968 views

How would you write this Clojure snippet in Ruby and/or Haskell?

I was working on a Rails template and was trying to write a bit of code that allows me to populate a table or multiple columns of ul tags "top-to-bottom" and "left-to-right" across however many ...

1 2