I started a Udemy course on learning Rust.   Linus Torvalds talks about it.   So I decided to learn it.  

Hello, world!

This is the first thing you learn to program in most langauges.  Here are examples in Rust and Python

Rust

Python

fn main() {

    println!("Hello, world!");

}
def print_hw(name):
# Use a breakpoint in the code line below to debug your script.
print(f'{name}') # Press Ctrl+F8 to toggle the breakpoint.


# Press the green button in the gutter to run the script.
if __name__ == '__main__':
print_hw('Hello. world!')
Executing task: C:\Users\netadmin\.cargo\bin\cargo.EXE run --package hello_world --bin hello_world

Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.23s
Running `target\debug\hello_world.exe`
Hello, world!
* Terminal will be reused by tasks, press any key to close it.
C:\Users\netadmin\HelloWorld\.venv\Scripts\python.exe C:\Users\netadmin\HelloWorld\main.py 
Hello. world!

Process finished with exit code 0