hellow 0.1.1

This library only displays "🐹Hello World🐹"
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// "Hello"と表示する関数
pub fn hello() {
    println!("🐹Hello World🐹");
}

// テストモジュール
#[cfg(test)]
mod tests {
    use super::*;

    // `hello`関数の動作をテストする(オプション)
    #[test]
    fn hello_prints_correctly() {
        // `hello`関数の出力をテストするには、標準出力をキャプチャするなどの方法が必要です。
        // Rustの標準ライブラリでは直接サポートされていないため、外部クレートを使用するか、省略してください。
    }
}