Skip to content

Instantly share code, notes, and snippets.

@rossjones
rossjones / gist:4666995
Created January 29, 2013 19:36
default lein project.clj
(defproject myapp "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.4.0"]])
print 'Hello, World'
if 1:
print "Computer is on fire"
# Testing runner
puts "Hello Ruby World!"
my $i = 0;
while ($i <100)
{
print "Hello World\n";
}
continue
{
$i++;
}
echo "Hello"
#include <stdio.h>
int main(void){
printf("Hello C World\n");
return 0;
}
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
cout << "Welcome to C++ Programming" << endl;
return 0;
}
set rules {
{1 00R 1}
{2 01L 0}
{1 __L 2}
{2 10L 2}
{2 _1L 0}
{1 11R 1}
}
set tapes {
0
cat('Hello, world!\n')
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); // Display the string.
}
}