Revert "github generated gh-pages branch"

This reverts commit 97e0e510b5.
This commit is contained in:
Robert Peters
2011-03-13 20:36:14 +01:00
parent 97e0e510b5
commit 7f878aa890
181 changed files with 1096 additions and 88 deletions

4
v/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
*.swp*
*tmp*
*swp*
*~

5
v/vala.vala Normal file
View File

@@ -0,0 +1,5 @@
static void main (string[] args)
{
stdout.printf ("Hello World\n");
}

5
v/vbnet.vb Normal file
View File

@@ -0,0 +1,5 @@
Module HelloWorld
Sub Main()
System.Console.WriteLine("Hello World")
End Sub
End Module

13
v/vhdl.vhdl Executable file
View File

@@ -0,0 +1,13 @@
use std.textio.all;
entity hello_world is
end hello_world;
architecture behaviour of hello_world is
begin
process
begin
write (output, String'("Hello world!"));
wait;
end process;
end behaviour;

5
v/visualbasic.vb Executable file
View File

@@ -0,0 +1,5 @@
Module HelloWorld
Sub Main()
MsgBox("Hello world!")
End Sub
End Module

6
v/vrml.wrl Normal file
View File

@@ -0,0 +1,6 @@
#VRML V2.0 utf8
Shape {
geometry Text {
string "Hello World"
}
}