13
Xstatic
2y

Console.WriteLine("Hello, devRant.");

Comments
  • 3
    console.log('howdy');
  • 5
    Part of me wants to be nice, part of me wants to deride the basic, un original post.

    So, howdy,
  • 3
    require 'logger'

    logger = Logger.new(STDOUT)

    def greetings(pooping)
    logger.info("hello")
    logger.debug("why the fuck did I put so much effort into this?")
    logging.debug("ohhh that's why...") if pooping
    end

    greetings(true)
  • 2
    package main;

    class App{
    public static void main(String[] args){
    System.out.println("Welcome to devRant!");
    }
    }

    // I don't know why people complain, it's not that much code.
Add Comment