Explore >> Select a destination


You are here

blog.submain.com
| | brendanbondurant.com
11.9 parsecs away

Travel
| | Continuing with this idea of learning C#, I am going to look at how each language handles a simple class. I'll just make a class Person with a few properties/attributes and a method to describe the person. As usual, I'll start it out in Ruby. One thing that has stuck with me from a great...
| | connorberry.com
13.9 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);...
| | danielpecos.com
12.0 parsecs away

Travel
| | Para retomar de nuevo la marcha del blog, he decidido comenzar mostrando algunos ejemplos de programación en C#. Por el momento os dejo el obligatorio programa para todo aquel que empieza con algún lenguaje. Hola Mundo! using System; namespace HolaMundo { public class HolaMundo { public static void Main (string [] args) { Console.WriteLine ("Hola Mundo!"); } } } Sencillo, ¿verdad? Tiene mucha semejanza con Java, exceptuando que las palabras reservadas difieren y que Java no posee el concepto de espacios ...
| | peoplingthepast.com
103.7 parsecs away

Travel
| This week on the blog we interview Dr. Cara Tremain, an Assistant Professor at Simon Fraser University, whose research on looting and the antiquities market sheds light on the ethical challenges that museums and institutions face when dealing with trafficked culture and the importance that provenance research plays in the fight against the illicit antiquities...