9 lines
494 B
Rust
9 lines
494 B
Rust
|
|
/*--------------------------------------------------------------------------------------------------------------
|
||
|
|
* 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);
|
||
|
|
}
|