4 releases

0.1.6 Aug 17, 2024
0.1.3 Jun 13, 2024
0.1.2 Feb 21, 2024
0.1.1 Feb 21, 2024

#18 in #mark-down

Download history 141/week @ 2024-08-15 5/week @ 2024-08-22 12/week @ 2024-09-12 3/week @ 2024-09-19 14/week @ 2024-09-26 9/week @ 2024-10-03

225 downloads per month

MulanPSL-2.0

5KB
52 lines

sline

use aok::{Result, OK};
use sline::Line;
use static_init::constructor;
use tracing::info;

#[constructor(0)]
extern "C" fn init() {
  loginit::init()
}

#[tokio::test]
async fn test() -> Result<()> {
  let txt_li = [
    r#"0
11

    22
 

  333
  4
    567

    9"#,
    "1\r\n2\r3\n4\n",
  ];

  for txt in txt_li {
    for i in Line::new(txt) {
      info!("{:?}", i);
    }
  }
  OK
}

About

This project is an open-source component of i18n.site ⋅ Internationalization Solution.

关于

本项目为 i18n.site ⋅ 国际化解决方案 的开源组件。

No runtime deps