So I know that C++ is strongly typed and was just wondering if there was any library (or any thing for that fact of the matter) that would allow you to make a variable that has no initial specific type like var in Python.
+1 for Boost, although I still find it ugly..
Xavier Ho
2010-05-23 01:44:50
Type inference is strongly typed and thus not all the same as a var type.
FredOverflow
2010-05-23 09:53:57
Yep `auto` is more like `var` in C#, i think.
Johannes Schaub - litb
2010-05-23 22:31:08