版本40和46间的区别 (跳过第6版)
于2020-04-23 20:30:43修订的的版本40
大小: 3507
编辑: czk
备注:
于2020-04-26 08:51:16修订的的版本46
大小: 3910
编辑: czk
备注:
删除的内容标记成这样。 加入的内容标记成这样。
行号 52: 行号 52:
 * [[http://www.wy182000.com/wordpress/wp-content/uploads/2013/04/readinglua.pdf|Lua源码欣赏 by 云风]]
行号 54: 行号 55:
 * XLISP: http://www.mv.com/ipusers/xlisper/
 * XLISP PLUS: http://almy.us/xlisp.html
 * [[http://daiyuwen.freeshell.org/gb/rol/roots_of_lisp.html|Lisp之根源]]

 * [[函数式编程]]

== Haskell ==

 * [[http://learnyouahaskell.com/|Learn You a Haskell for Great Good]]
 * [[https://www.youtube.com/watch?v=sW327nUDf5g|School of Haskell]]

== JavaScript ==
 * 一个Java Script教程:[[attachment:jsintro.zip]]
 * [[https://medium.com/javascript-and-opinions/state-of-the-art-javascript-in-2016-ab67fc68eb0b#.ejjn8solb|State of the Art JavaScript in 2016]]
 * [[https://2019.stateofjs.com/|The State of JavaScript 2019]]
 * [[https://mochajs.org/#getting-started|MochaJS]]
行号 173: 行号 184:
== JavaScript ==
一个Java Script教程:[[attachment:jsintro.zip]]

程序设计语言

1. Python

2. C

3. C++

   1 #include <iostream>
   2 #include <string>
   3 using namespace std;
   4 
   5 class Message {
   6 private:
   7    string txt;
   8 public:
   9    Message(string s){ txt = s;}
  10    void Print() const { cout << txt;}
  11 };
  12 
  13 int main()
  14 { 
  15    Message M("Hello world");
  16    M.Print();
  17 }

4. Lua

5. Lisp

6. Haskell

7. JavaScript

8. 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

9. 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();

10. 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()

11. 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

12. Smalltalk

13. Tcl

14. Golang

程序设计语言 (2020-04-26 08:51:16由czk编辑)

ch3n2k.com | Copyright (c) 2004-2020 czk.