65
lubwn
7y

Merry christmas and a happy new year to all IT guys here ;))

Comments
  • 3
    Well said! Happy Holidays to devRanters world-wide 🌅
  • 9
    Merry Christmas too !!

    (All I want for Christmas is this code to be indeted and lowercased #saferForTheEyes)
  • 1
    Merry Christmas!
  • 14
    I don't wanna get rude, but my God that piece of code is ugly.
  • 2
    // C#
    using System;
    namespace xmas {
    class Program {
    static void main(string args[])
    {
    for (int i = 1; i <=3; i++)
    {
    Console.WriteLine("We wish you a
    merry christmas, ");
    }
    Console.WriteLine("And a happy new year!");
    }
    }
    }
  • 1
    This took me way too long on my phone
  • 5
    WHY IS YOUR CODE SHOUTING AT ME?

    merry xmas :)
  • 3
    //Java
    for (int i = 0: i < 3; i++) {
    System.out.println('We wish you a merry christhmas');
    }
    System.out.println('And a happy new year');
  • 0
    Merry Christmas, guys!!
  • 0
    @davide I'd remove the brackets around the for loop since it's a single statement. ;)
  • 0
    @hrombach yes but I hate haha 🎄 merry christmas
  • 3
    # Ruby

    3.times{ puts "We wish you a merry christmas"}
    puts "And a happy new year"
Add Comment