Created
June 10, 2021 15:06
-
-
Save Steboss89/392ce1fb227a3cc16f25b74e4a9d1c6d to your computer and use it in GitHub Desktop.
Main routine for linear regression
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::vec::Vec; | |
use std::env::args; | |
mod linear_regression; | |
fn main() { | |
println!("Hello, world!"); | |
linear_regression::run(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment