Categorize files based on the first letter
This commit is contained in:
6
c/c++.cpp
Normal file
6
c/c++.cpp
Normal file
@@ -0,0 +1,6 @@
|
||||
#include<iostream>
|
||||
using namespace std;
|
||||
|
||||
int main(){
|
||||
cout << "Hello World" << endl;
|
||||
}
|
||||
6
c/c.c
Normal file
6
c/c.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include<stdio.h>
|
||||
|
||||
int main(void) {
|
||||
printf("Hello World\n");
|
||||
return 0;
|
||||
}
|
||||
1
c/clipper.prg
Normal file
1
c/clipper.prg
Normal file
@@ -0,0 +1 @@
|
||||
? 'Hello World'
|
||||
8
c/clips.clips
Normal file
8
c/clips.clips
Normal file
@@ -0,0 +1,8 @@
|
||||
(defrule hw
|
||||
(f ?x)
|
||||
=>
|
||||
(printout t ?x crlf))
|
||||
|
||||
(assert (f "Hello World"))
|
||||
|
||||
(run)
|
||||
1
c/clisp.lisp
Normal file
1
c/clisp.lisp
Normal file
@@ -0,0 +1 @@
|
||||
(write-line "Hello World")
|
||||
2
c/coldfusion.cfm
Normal file
2
c/coldfusion.cfm
Normal file
@@ -0,0 +1,2 @@
|
||||
<cfset message = "Hello World">
|
||||
<cfoutput> #message#</cfoutput>
|
||||
5
c/csharp.cs
Normal file
5
c/csharp.cs
Normal file
@@ -0,0 +1,5 @@
|
||||
class HelloWorld {
|
||||
static void Main() {
|
||||
System.Console.WriteLine("Hello World");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user