Created
October 15, 2014 14:17
-
-
Save foliea/5081df06ba34dbf5ad08 to your computer and use it in GitHub Desktop.
Test refactor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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