Skip to content

Instantly share code, notes, and snippets.

@foliea
Created October 15, 2014 14:17
Show Gist options
  • Save foliea/5081df06ba34dbf5ad08 to your computer and use it in GitHub Desktop.
Save foliea/5081df06ba34dbf5ad08 to your computer and use it in GitHub Desktop.
Test refactor
var ruby = utils.multiline(function() {/*
puts "Hello world"
*/});
var golang = utils.multiline(function() {/*
package main
import "fmt"
func main() {
fmt.Println("Hello world")
}
*/});
var python2 = utils.multiline(function() {/*
print "Hello World"
*/});
var python3 = utils.multiline(function() {/*
print("Hello World")
*/});
var c = utils.multiline(function() {/*
#include <stdio.h>
int main()
{
printf("Hello World\n");
return 0;
}
*/});
var cpp = utils.multiline(function() {/*
#include <iostream>
int main()
{
std::cout << "Hello World\n";
return 0;
}
*/});
var csharp = utils.multiline(function() {/*
using System;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello world");
}
}
*/});
var php = utils.multiline(function() {/*
<?php
print("Hello world\n");
*/});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment