|
大小: 2322
备注:
|
大小: 2630
备注: converted to 1.6 markup
|
| 删除的内容标记成这样。 | 加入的内容标记成这样。 |
| 行号 2: | 行号 2: |
| [[TableOfContents]] | <<TableOfContents>> |
| 行号 5: | 行号 5: |
| * 详见[[C语言]] | |
| 行号 28: | 行号 28: |
| 详见["C++语言"] | 详见[[C++语言]] |
| 行号 30: | 行号 30: |
| == Python == 详见[[Python语言]] |
|
| 行号 65: | 行号 67: |
| 一个Delphi教程:attachment:delphitut.zip | 一个Delphi教程:[[attachment:delphitut.zip]] |
| 行号 126: | 行号 128: |
| * VB教程: [[attachment:vb_site.zip]] |
|
| 行号 146: | 行号 150: |
| 一个简洁的Java教程:[attachment:Java%20Programming%20for%20beginners%20in%20fourhours.htm] | 一个简洁的Java教程:[[attachment:Java Programming for beginners in fourhours.htm]] |
| 行号 149: | 行号 153: |
| 一个Java Script教程:attachment:jsintro.zip | 一个Java Script教程:[[attachment:jsintro.zip]] |
| 行号 151: | 行号 155: |
| == SmallTalk == | == Smalltalk == * Dolphin Smalltalk: http://www.object-arts.com/content/navigation/products/dce.html 文档:http://www.object-arts.com/docs/index.html [[attachment:DolphinEducation.exe]] |
| 行号 154: | 行号 160: |
| * http://www.noucorp.com/ |
C
详见C语言
C++
详见C++语言
Python
详见Python语言
Lisp
XLISP PLUS: http://almy.us/xlisp.html
Delphi
program hellopas;
{$APPTYPE CONSOLE}
uses windows;
type Message = class
txt : string;
constructor create(s:string);
procedure print;
end;
constructor Message.Create(s:string);
begin
txt := s
end;
procedure Message.print;
begin
writeln(txt)
end;
var m : Message;
begin
m := Message.Create('Hello world');
m.print()
end.一个Delphi教程:delphitut.zip
Perl
package Message;
# Message class constructor
sub new {
my $class = shift;
my $txt = shift;
my $self = {};
$self->{txt} = $txt;
bless ($self, $class);
return $self;
}
#Message->print() method
sub print{
my $self = shift;
if ($self->{txt} eq ""){
print "No message";
}else{
for($i=0;$i<3;$i++){
print $self->{txt},"\n";
}
}
return $self
}
1;require Message;
$m = Message->new("Hello World");
$m->print();Robert's Tutorial: http://perl.sioc.org/win32perltut.html
Visual BASIC
class Message
Private theTxt
Public Property Let TXT(S)
theTxt = S
End Property
Public Sub Print()
Wscript.echo theTxt
End Sub
End Class
Dim M
set M = new Message
M.TXT = "Hello world"
m.Print()VB教程: vb_site.zip
Java
class Msg{
private String txt;
public Msg(String s){
txt = s;
}
public void print(){
System.out.println(txt);
}
}
public class hello{
public static void main(String args[]){
Msg M = new Msg("hello world");
M.print();
int i = 0;
}
}一个简洁的Java教程:Java Programming for beginners in fourhours.htm
JavaScript
一个Java Script教程:jsintro.zip
Smalltalk
Dolphin Smalltalk: http://www.object-arts.com/content/navigation/products/dce.html 文档:http://www.object-arts.com/docs/index.html DolphinEducation.exe