You are here |
netopyr.com | ||
| | | |
studiofreya.org
|
|
| | | | ||
| | | |
b.agilob.net
|
|
| | | | ||
| | | |
connorberry.com
|
|
| | | | Language Comparison Perl: while (<>) { print "$. : $_" } Perl: while (<>) { print "$. : $_" } CSharp: using System; using System.IO; class App { public static void Main(string[] args) { int line_number = 1; foreach (string arg in args) { foreach (string line in File.ReadLines(arg)) { Console.WriteLine(line_number + ":" + line);... | |
| | | |
www.cppstories.com
|
|
| | After watching some of the talks from Build 2014 - especially "Modern C++: What You Need to Know" and some talks from Eric Brumer I started thinking about writing my own test case. Basically I've created simple code that compares vector vs vector> The first results are quite interesting so I thought it is worth to describe this on the blog. |