Explore >> Select a destination


You are here

netopyr.com
| | studiofreya.org
10.0 parsecs away

Travel
| |
| | b.agilob.net
9.6 parsecs away

Travel
| |
| | connorberry.com
9.1 parsecs away

Travel
| | 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
69.1 parsecs away

Travel
| 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.