Public Notes Results 1 - 7 of about 7 for programming |
 |
| 29 Jul 2007 10:11 PM |
Hello World in Visual Basic .NET (VB.NET)
--
Imports System.Console
Class HelloWorld
Public Shared Sub Main()
WriteLine("Hello, world!")
End Sub
End Class |
| 29 Jul 2007 10:10 PM |
Hello World for 6502 Assembler (C64)
--
ldy #0
beq in
loop:
jsr $ffd2
iny
in:
lda hello,y
bne loop
rts
hello: .tx "Hello World!"
.by 13,10,0 |
| 29 Jul 2007 10:09 PM |
Hello World in Algol-68
--
( # Hello World in Algol 68 # print(("Hello World!",newline))) |
| 29 Jul 2007 10:08 PM |
Hello World in Algol-60
--
'BEGIN'
'COMMENT' Hello World in Algol 60;
OUTPUT(4,'(''('Hello World!')',/')')
'END'
|
| 29 Jul 2007 10:00 PM |
Hello World in Ada
--
with Text_IO;
procedure Hello_World is
begin
Text_IO.Put_Line("Hello World!");
end Hello_World;
|
| 29 Jul 2007 01:46 PM |
A regular expression ( also "RegEx" or "regex" ) is a string that is used to describe or match a set of strings, according to certain syntax rules. The specific syntax rules vary depending on the specific implementation, programming language, or librar... |
| 29 Jul 2007 01:43 PM |
MySQL Regular Expressions
*
Matches zero or more instances of the string preceding it
+
Matches one or more instances of the string preceding it
?
Matches zero or one instances of the string preceding it
.
Matches any single ch... |
|
 |
|
|
 |
|