Revert "github generated gh-pages branch"
This reverts commit 97e0e510b5.
This commit is contained in:
4
v/.gitignore
vendored
Normal file
4
v/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*.swp*
|
||||
*tmp*
|
||||
*swp*
|
||||
*~
|
||||
5
v/vala.vala
Normal file
5
v/vala.vala
Normal file
@@ -0,0 +1,5 @@
|
||||
static void main (string[] args)
|
||||
{
|
||||
stdout.printf ("Hello World\n");
|
||||
}
|
||||
|
||||
5
v/vbnet.vb
Normal file
5
v/vbnet.vb
Normal file
@@ -0,0 +1,5 @@
|
||||
Module HelloWorld
|
||||
Sub Main()
|
||||
System.Console.WriteLine("Hello World")
|
||||
End Sub
|
||||
End Module
|
||||
13
v/vhdl.vhdl
Executable file
13
v/vhdl.vhdl
Executable 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
5
v/visualbasic.vb
Executable file
@@ -0,0 +1,5 @@
|
||||
Module HelloWorld
|
||||
Sub Main()
|
||||
MsgBox("Hello world!")
|
||||
End Sub
|
||||
End Module
|
||||
6
v/vrml.wrl
Normal file
6
v/vrml.wrl
Normal file
@@ -0,0 +1,6 @@
|
||||
#VRML V2.0 utf8
|
||||
Shape {
|
||||
geometry Text {
|
||||
string "Hello World"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user