Skip to content
Snippets Groups Projects
Commit d64e1d6c authored by Blinningjr's avatar Blinningjr
Browse files

F

parent 2e7c74eb
No related branches found
No related tags found
No related merge requests found
...@@ -99,6 +99,18 @@ fn main() { ...@@ -99,6 +99,18 @@ fn main() {
// Explain in your own words what Microsoft would gain by using Rust. // Explain in your own words what Microsoft would gain by using Rust.
// //
// [your answer here] // [your answer here]
// The borrow checker in rust will make sure that the pointers in Microsoft's code will be safe.
// Pointers can be the cause of horrible bugs that are often very hard to find and can cause a lot
// of problems. Thus using rust will remove that problem for Microsoft.
//
// Rust is also great because it panics when something goes wrong when compiling, many other
// programming languages sometime dose not give an error at compile time. The bugs will then be in
// the release version that users use and cause problems. Thus Microsoft will have less bugs in
// there programs if they use rust because they will be caught before the users see them.
//
// Cargo klee would also be of use to Microsoft because of how much better easier it is to use
// compared to using klee on C code.
//
// //
// Explain in your own words what Microsoft would gain by using `cargo klee` // Explain in your own words what Microsoft would gain by using `cargo klee`
// on their Rust code. // on their Rust code.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment