```rust
use aok::{Result, OK};
use sline::Line;
use static_init::constructor;
use tracing::info;
extern "C" fn init() {
loginit::init()
}
async fn test() -> Result<()> {
let txt = r#"0
11
333
4
for i in Line::new(txt) {
}
OK
}
```