From 9b4aba84d026a9e65e509257cdecab45c809891f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20L=C3=BCke?= Date: Wed, 18 Sep 2019 18:04:42 +0200 Subject: [PATCH] moved files to standard rust file/folder structure --- src/lib/lib.rs | 0 src/main.rs | 9 +++++++++ 2 files changed, 9 insertions(+) create mode 100644 src/lib/lib.rs create mode 100644 src/main.rs diff --git a/src/lib/lib.rs b/src/lib/lib.rs new file mode 100644 index 0000000..e69de29 diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..9151108 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,9 @@ +/*-------------------------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. + *-------------------------------------------------------------------------------------------------------------*/ + +fn main() { + let name = "VS Code Remote - Containers"; + println!("Hello, {}!", name); +} \ No newline at end of file