プログラミング言語 Sheol

Limbo をインスパイアしたプログラミング言語 Sheol のへろーわーるど:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
include "sys.shl" as Sys;
include "draw.shl";

module Hello {
    init(self : ref Draw.Context, argv : list[string]);
}

init(self : ref Draw.Context, argv : list[string]) {
    sys = load Sys;

    sys->print( "Hello, World!\n" );
}

ここで Sys モジュールをロード:

1
sys = load Sys;

変数 sysSys 型。
SysModule 型から派生している。
Sys には openreadwriteprint などのシステム関数が含まれている。

じゃあこれはなんなのかっていうと:

1
include "sys.shl" as Sys;

sys.shl をインクルードしている。

sys.shl は多分こういう感じの内容で:

1
2
3
module Sys {
    print(format_or_value : string, ...);
}

シグネチャしかないため、 load する必要があると思われる。多分……。

それだったら、以下のようにしても良いんじゃないかって思うけど……。

1
Sys = load 'sys.shlm';