#include #include #include void thread(int @c) { if(@c) print("yep"); else print("nope"); } void threadmain(int, char**) { int @c; chanset(c, 0); cothread(thread(c), 4096); c @= 1; }