Categorize files based on the first letter

This commit is contained in:
Kevin Ballard
2008-07-25 17:52:05 -07:00
parent bb19ce29ab
commit a360b77ed3
60 changed files with 0 additions and 0 deletions

6
c/c++.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include<iostream>
using namespace std;
int main(){
cout << "Hello World" << endl;
}

6
c/c.c Normal file
View File

@@ -0,0 +1,6 @@
#include<stdio.h>
int main(void) {
printf("Hello World\n");
return 0;
}

1
c/clipper.prg Normal file
View File

@@ -0,0 +1 @@
? 'Hello World'

8
c/clips.clips Normal file
View File

@@ -0,0 +1,8 @@
(defrule hw
(f ?x)
=>
(printout t ?x crlf))
(assert (f "Hello World"))
(run)

1
c/clisp.lisp Normal file
View File

@@ -0,0 +1 @@
(write-line "Hello World")

2
c/coldfusion.cfm Normal file
View File

@@ -0,0 +1,2 @@
<cfset message = "Hello World">
<cfoutput> #message#</cfoutput>

5
c/csharp.cs Normal file
View File

@@ -0,0 +1,5 @@
class HelloWorld {
static void Main() {
System.Console.WriteLine("Hello World");
}
}