yuk1ty / learning-systems-programming-in-rust

「Rustでもわかるシステムプログラミング」
433 stars 23 forks source link

added 2_4_3 #23

Closed shnmorimoto closed 3 years ago

shnmorimoto commented 3 years ago

fixed #5 4-3

original go code output

➜ go run main.go
bytes.Buffer example1

bytes.Buffer example1
bytes.Buffer example2

rust code output

➜ cargo run -p chapter2 --bin main_2_4_3
    Finished dev [unoptimized + debuginfo] target(s) in 0.00s
     Running `target/debug/main_2_4_3`
bytes.Buffer example1

bytes.Buffer example1
bytes.Buffer example2
yuk1ty commented 3 years ago

ありがとうございます!

お手数ですが、1点ご対応いただいてもいいでしょうか?

直近の作業でディレクトリの切り方に少し修正を入れており、平仄を合わせておきたいです。

今回のケースでは、下記のようになるかなと思います🙏

/chapter2
    /src
        /2_4_3
            main.rs

参考: https://github.com/yuk1ty/learning-systems-programming-in-rust/tree/master/chapter2/src

よろしくお願いします!

shnmorimoto commented 3 years ago

@laysakura @yuk1ty レビュー頂きありがとうございます。

ディレクトリの構成見逃しておりました。すみません。 こちら修正致しました。

shnmorimoto commented 3 years ago

ありがとうございます!