Skip to content

Commit

Permalink
new gif for readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jweinst1 committed Jun 20, 2018
1 parent 40d9579 commit 2e63008
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

The Flow-based Programming Language

![Main Md Gif](images/intro_wind.gif)

# Table of Contents

- [Intro](#intro)
Expand All @@ -16,6 +18,7 @@ The Flow-based Programming Language
- [Syntax](#syntax)
- [Syntax Errors](#syntax-errors)
- [Commands](#commands)
- [out](#out)

## Intro

Expand Down Expand Up @@ -152,7 +155,7 @@ The following details the language components, features, and syntax.

### Syntax

The `Wind` language uses a continuous, stream-like syntax. It is meant to be read in a linear, straight fashion that emphasizes fixed units of commands and computation.
The `Wind` language uses a continuous, stream-like syntax. It is meant to be read in a linear, straight fashion that emphasizes fixed units of commands and computation.

The general format of `Wind` is the following:

Expand Down Expand Up @@ -181,11 +184,20 @@ Error: Expected argument or value, found 'l'

### Commands

The `Wind` language uses an effecient set of commands to manipualte and process a flow of data. Commands are named words that appear before an arbitrary sequence of arguments.
The `Wind` language uses an effecient set of commands to manipualte and process a flow of data. Commands are named words that appear before an arbitrary sequence of arguments.

#### out

The
The `out` command prints the currently active data into stdout.

*Example*

```
wind> push 5 -> out
[ 5 ]
wind> clr -> out
[ ]
```


## Stage
Expand Down
Binary file added images/intro_wind.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2e63008

Please sign in to comment.