🌱 Quick Start
Get up and running in 5 minutes
Step 1: Verify Installation
dal --version
# Prints your installed dist_agent_lang / dal version
# (matches the release or git checkout you installed from)
Step 2: Create Your First Program
Create a file hello.dal:
@trust("hybrid")
service HelloWorld {
fn main() {
print("Hello, dist_agent_lang!");
}
}
Note: Make sure you're in the correct directory when creating files.
Step 3: Run It
dal run hello.dal
# Output: Hello, dist_agent_lang!
Tip: Check out the examples/ directory in the repository for more examples!