「Rust筆記」修訂間的差異

增加 255 位元組 、 2024年3月16日 (六) 13:37
行 96: 行 96:
     }
     }
</pre>
</pre>
===讀檔案顯示資料===
摘自:https://doc.rust-lang.org/book/ch12-02-reading-a-file.html
<pre>
let contents = fs::read_to_string(file_path)
        .expect("Should have been able to read the file");
    println!("With text:\n{contents}");</pre>
==函式庫==
==函式庫==
=== Gtk4 ===
=== Gtk4 ===