devrun 0.1.0

A simple scripting language and CLI automation tool.
1
2
3
4
5
6
7
8
9
10
11
12
# Test script for the run scripting language
# Variables
project = "MyProject"
version = "1.0.0"
# Function definition
greet() echo "Hello from the run scripting language!"; echo "Building project..."
# Call the function
greet()
# Run some commands
ls -la
echo "Project: MyProject"
echo "Done!"