Skip to content

Instantly share code, notes, and snippets.

@ryanlucas
Last active February 27, 2019 22:45

Revisions

  1. ryanlucas revised this gist Feb 27, 2019. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions is_deleted
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    yep
  2. ryanlucas revised this gist Feb 27, 2019. No changes.
  3. ryanlucas revised this gist Feb 27, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    Foo
    Foobar
    First State
    some event -> Second State
    Second State
  4. ryanlucas created this gist Feb 27, 2019.
    4 changes: 4 additions & 0 deletions SketchSystems.spec
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@
    Foo
    First State
    some event -> Second State
    Second State
    6 changes: 6 additions & 0 deletions SketchSystems_prototype.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    function render(model){
    let current_state_name = model.active_states[0].name;
    return $("h1",
    {style: {color: "darkBlue"}},
    `The current state is: ${current_state_name}`);
    }