frame-cli 0.3.0

CLI for Frame — five intention-verbs over one application: frame new scaffolds it, frame run serves it, frame test proves it (real browser included), frame check verifies it statically, frame doctor walks the prerequisites
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
-module({{GLEAM_NAME}}_ffi).
-export([loop/2]).

loop(Supervisor, State) ->
    receive
        0 ->
            Supervisor ! State,
            loop(Supervisor, State);
        2 ->
            nil;
        Message when is_integer(Message) ->
            loop(Supervisor, Message)
    end.