Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 378 Bytes

hello_world.md

File metadata and controls

10 lines (10 loc) · 378 Bytes

A mandatory step in learning a new technology in computer science is to run a 'hello world' example. Your first step in bash should be no exception. Open a bash shell and type everything after the $ sign and hit return. The shell should greet you and everybody else in the world as shown in this example.

$ echo "Hello World!"
Hello World!