Concurrent Clean : CleanJ : snapshot更新

http://www.geocities.jp/lethevert/softwares/clean/customize.html
もうちょっといろいろできるようになりました。

implementation module Lib

import StdEnv

plus_s :: !Int !Int -> Int
plus_s a b = a + b

plus_l :: Int Int -> Int
plus_l a b = a + b
module Main

import StdEnv, Lib

Start = plus_s 1 2
module Main2

import StdEnv, Lib

Start = plus_l 1 2

というプログラムをコンパイルして実行できるようになりました。

      • -

次は、文字列処理を試してみるか。