10 lines
169 B
Plaintext
10 lines
169 B
Plaintext
#!/usr/bin/env bellos
|
|
# File: hello_world.bellos
|
|
|
|
# Simple Hello World script
|
|
echo "Hello, World!"
|
|
|
|
# Using variables
|
|
name="Bellos"
|
|
echo "Welcome to $name programming!"
|