init [skip ci]

Change-Id: I46a4f058e0cefc422f539b31103060e0d80403a8
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 0000000..01f209e
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,22 @@
+// Uncomment this block to pass the first stage
+// use std::net::TcpListener;
+
+fn main() {
+    // You can use print statements as follows for debugging, they'll be visible when running tests.
+    println!("Logs from your program will appear here!");
+
+    // Uncomment this block to pass the first stage
+    //
+    // let listener = TcpListener::bind("127.0.0.1:4221").unwrap();
+    //
+    // for stream in listener.incoming() {
+    //     match stream {
+    //         Ok(_stream) => {
+    //             println!("accepted new connection");
+    //         }
+    //         Err(e) => {
+    //             println!("error: {}", e);
+    //         }
+    //     }
+    // }
+}