Skip to content

Instantly share code, notes, and snippets.

@Steboss89
Created June 10, 2021 15:06
Show Gist options
  • Save Steboss89/392ce1fb227a3cc16f25b74e4a9d1c6d to your computer and use it in GitHub Desktop.
Save Steboss89/392ce1fb227a3cc16f25b74e4a9d1c6d to your computer and use it in GitHub Desktop.
Main routine for linear regression
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