continuable/test.cpp
2015-06-08 22:44:14 +02:00

18 lines
201 B
C++

#include "fluent++.hpp"
int main(int argc, char** argv)
{
make_waterfall()
.then([]
{
})
.then([]
{
});
return 0;
}