add 'rawsrc' target to generate raw sources (without the course comments)
[rust-101.git] / src / part01.rs
index 7c205bd41ff24a2c7140243a591fafb8a7ad4434..7d66385f4a53970518cb2a06ae995f623e5d0523 100644 (file)
@@ -77,7 +77,7 @@ impl NumberOrNothing {
 // is independent of the definition of the type. `self` is like `this` in other
 // languages, and its type is always implicit. So `print` is now a method that
 // takes as first argument a `NumberOrNothing`, just like `print_number_or_nothing`.
-//
+// 
 // Try making `number_or_default` from above an inherent method as well!
 
 // With our refactored functions and methods, `main` now looks as follows: