bellos/bellos_scripts/hello_world.bellos
2024-09-24 18:39:42 -04:00

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!"