• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 use async_stream::stream;
2 
main()3 fn main() {
4     stream! {
5         fn foo() {
6             yield "hello";
7         }
8     };
9 }
10