graphix-package 0.9.0

A dataflow language for UIs and network programming, package types
Documentation
1
2
3
4
5
6
7
8
9
/// a pure graphix value
val var: i64;

/// a graphix function implemented in rust
val example: fn(arg: Any) -> bool;

/// a graphix function implemented in rust using the
/// simplified API
val example_cached: fn(@args: bool) -> bool;