weirflow 0.1.0

GPU-first dataflow analysis primitives for Vyre and Santh compiler pipelines.
Documentation
1
enum Color{RED,GREEN,BLUE}; int switch_enum(enum Color c){ int r=0; switch(c){ case RED: r=1; break; case GREEN: r=2; break; case BLUE: r=3; break; } return r; }