# Syntax

Below is the syntax of systemtap language.

```
probe PROBEPOINT [, PROBEPOINT] { [STMT ...] }
```

This is something like awk syntax, specify the PROBEPOINT to trigger the action and specify what to do with STMT.

This would be to boring to just look at the definition. Take the HelloWorld as an example.

```
probe begin
{ 
    printf("HelloWorld\n");
    exit(); 
}
```

* begin is a special probe point means at the beginning of the probe process
* printf()/exit() is what should do on **begin** event

With this script and write into file helloworld.stp, we can run it with

```
sudo stap -v helloworld.stp
```

The syntax seems simple, right?


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://richardweiyang-2.gitbook.io/systemtap_with_examples/language/syntax.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
