graphix-shell 0.9.0

A dataflow language for UIs and network programming
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
## Notes on graphix

- graphix is a dataflow language, when you write code you're actually
  specifying an event graph. This causes semantics to be very
  different than most programming languages in some cases.
  
- The examples directory contains graphix examples

- graphix struct fields are stored as arrays of pairs sorted by the
  field name, keep that in mind when using them in rust bindings.
  
- graphix modules and blocks are ; separated, the last item may not
  end in a semi. Comma separated items work in a similar way.