metaphori / learning-abs

Learning Abstract Behavioural Specification

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Learning ABS (Abstract Behavioural Specification)

### Compile ABS code to JAva
$ java -jar lib/absfrontend.jar -j src/hello-world/hello.abs # Output goes to gen/ directory

### Execute application
$ java -cp gen/:lib/absfrontend.jar Hello.Main 
# Hello world!

### Compile to Erlang
$ java -jar lib/absfrontend.jar -e src/hello-world/hello.abs # Output goes to gen/erl
./gen/erl/run
# Hello World!

./gen/erl/run -P 8080 # cf Model API

About

Learning Abstract Behavioural Specification