Awesome-HelloWorlds
Awesome HelloWorlds
Alef - Phil Winterbottom, 1993
在proc receive(c)
用于启动一个进程,task receive(c)
用于启动一个线程,它们之间通过管道c
进行通讯。不过由于
由于

#include <alef.h>
void receive(chan(byte*) c) {
byte *s;
s = <- c;
print("%s\n", s);
terminate(nil);
}
void main(void) {
chan(byte*) c;
alloc c;
proc receive(c);
task receive(c);
c <- = "hello proc or task";
c <- = "hello proc or task";
print("done\n");
terminate(nil);
}
程序开头的#include <alef.h>
语句用于包含receive
是一个普通函数,程序中用作每个并发体的入口函数;main
函数中的alloc c
语句先创建一个chan(byte*)
类型的管道,类似make(chan []byte)
语句;然后分别以进程和线程的方式启动receive
函数;启动并发体之后,main
函数向c
管道发送了两个字符串数据;而进程和线程状态运行的receive
函数会以不确定的顺序先后从管道收到数据后,然后分别打印字符串;最后每个并发体都通过调用terminate(nil)
来结束自己。
B 语言
首先是
目前见到的
main() {
extrn a, b, c;
putchar(a); putchar(b); putchar(c);
putchar('!*n');
}
a 'hell';
b 'o, w';
c 'orld';
由于a/b/c
全局变量来定义要输出的内容,并且每个变量的长度必须对齐到了putchar
函数输出字符,最后的'!*n'
表示输出一个换行的意思。
总体来说,
C 语言
在
main()
{
printf("hello, world");
}
关于这个程序,有几点需要说明的:首先是main
函数因为没有明确返回值类型,默认返回int
类型;其次printf
函数默认不需要导入函数声明即可以使用;最后main
没有明确返回语句,但默认返回
这个例子同样出现在了
main()
{
printf("hello, world\n");
}
这个例子在字符串末尾增加了一个换行,\n
换行比'!*n'
换行看起来要简洁了一些。
在#include <stdio.h>
头文件包含语句,用于包含printf
函数的声明(新的printf
函数而言,依然可以不用声明函数而直接使用
#include <stdio.h>
main()
{
printf("hello, world\n");
}
然后到了main
函数的参数增加了void
输入参数说明,表示没有输入参数的意思。
#include <stdio.h>
main(void)
{
printf("hello, world\n");
}
至此,
Go
在经过半个世纪的涅槃重生之后,http
服务向每个访问的客户端打印中文的“你好
package main
import (
"fmt"
"log"
"net/http"
"time"
)
func main() {
fmt.Println("Please visit http://127.0.0.1:12345/")
http.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
s := fmt.Sprintf("你好, 世界! -- Time: %s", time.Now().String())
fmt.Fprintf(w, "%v\n", s)
log.Printf("%v\n", s)
})
if err := http.ListenAndServe(":12345", nil); err != nil {
log.Fatal("ListenAndServe: ", err)
}
}
我们通过net/http
包构造了一个独立运行的http.HandleFunc("/", ...)
针对/
根路径请求注册了响应处理函数。在响应处理函数中,我们依然使用fmt.Fprintf
格式化输出函数实现了通过http.ListenAndServe
函数调用来启动
Java
JavaScript
Kotlin
Limbo
Limbo(地狱)是用于开发运行在小型计算机上的分布式应用的编程语言,它支持模块化编程,编译期和运行时的强类型检查,进程内基于具有类型的通信管道,原子性垃圾收集和简单的抽象数据类型。
implement Hello;
include "sys.m"; sys: Sys;
include "draw.m";
Hello: module
{
init: fn(ctxt: ref Draw->Context, args: list of string);
};
init(ctxt: ref Draw->Context, args: list of string)
{
sys = load Sys Sys->PATH;
sys->print("hello, world\n");
}
从这个版本的“Hello World”程序中,我们已经可以发现很多implement Hello;
基本对应package Hello
包声明语句。然后是include "sys.m"; sys: Sys;
和include "draw.m";
语句用于导入其它的模块,类似import "sys"
和import "draw"
语句。然后init
,并且函数的参数的类型也是后置的,不过
Newsqueak
print
函数,它的“Hello World”程序看不出什么特色:
print("Hello,", "World", "\n");
从上面的程序中,除了猜测print
函数可以支持多个参数外,我们很难看到

// 向管道输出从2开始的自然数序列
counter := prog(c:chan of int) {
i := 2;
for(;;) {
c <-= i++;
}
};
// 针对listen管道获取的数列,过滤掉是prime倍数的数
// 新的序列输出到send管道
filter := prog(prime:int, listen, send:chan of int) {
i:int;
for(;;) {
if((i = <-listen)%prime) {
send <-= i;
}
}
};
// 主函数
// 每个管道第一个流出的数必然是素数
// 然后基于这个新的素数构建新的素数过滤器
sieve := prog() of chan of int {
c := mk(chan of int);
begin counter(c);
prime := mk(chan of int);
begin prog(){
p:int;
newc:chan of int;
for(;;){
prime <-= p =<- c;
newc = mk();
begin filter(p, c, newc);
c = newc;
}
}();
become prime;
};
// 启动素数筛
prime := sieve();
其中counter
函数用于向管道输出原始的自然数序列,每个filter
函数对象则对应每一个新的素数过滤管道,这些素数过滤管道根据当前的素数筛子将输入管道流入的数列筛选后重新输出到输出管道。mk(chan of int)
用于创建管道,类似make(chan int)
语句;begin filter(p, c, newc)
关键字启动素数筛的并发体,类似go filter(p, c, newc)
语句;become
用于返回函数结果,类似return
语句。
Python
import os
import os.path
import time
# class used to handle one application instance mechanism;
class ApplicationInstance:
# specify the file used to save the application instance pid
def __init__(self, pid_file):
self.pid_file = pid_file
self.check()
self.startApplication()
# called when the single instance starts to save it's pid
def startApplication(self):
file = open(self.pid_file, 'wt')
file.write(str(os.getpid()))
file.close()
# called when the single instance exit ( remove pid file )
# check if the current application is already running
def check(self):
# check if the pidfile exists
if not os.path.isfile(self.pid_file):
return
# read the pid from the file
pid = 0
try:
file = open(self.pid_file, 'rt')
data = file.read()
file.close()
pid = int(data)
except:
pass
# check if the process with specified by pid exists
if 0 == pid:
return
try:
os.kill(pid, 0) # this will raise an exception if the pid is not valid
except:
return
# exit the application
print("The application is already running !")
exit(0) # exit raise an exception so don't put it in a try/except block
def exitApplication(self):
try:
os.remove(self.pid_file)
except:
pass
if __name__ == '__main__':
# create application instance
appInstance = ApplicationInstance('/tmp/myapp.pid')
# do something here
print("Start MyApp")
time.sleep(5) # sleep 5 seconds
print("End MyApp")
# remove pid file
appInstance.exitApplication()