# Say something that is yours

Edit, save, run, and recognize your own output.

Last updated: 2026-09-09

Package: recipes | Status: complete-program

Tags: cpu, recipe

Let's make the computer say your sentence. Keep a copy of the original start.yh if you want to return to it, then replace its contents with the two lines below. Console.Log is a function: a named action. The parentheses hold what we give to that action. The quotation marks tell Yeho that the words inside are text, rather than another instruction.

```yh
start.yh
```


## Say something that is yours

Edit, save, run, and recognize your own output.

Verification: type checked

```yh
Console.Log("Hello, I am Pip!")
Console.Log("Shall we build a tiny game?")
```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.recipe__first_line"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

```

Expected output:

```text
Hello, I am Pip!
Shall we build a tiny game?
```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/recipe--first-line/program --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


Replace Pip with a name you like. Add a third Console.Log line telling us what your character wants.

Source: demonhunterlabs/app/lib/yeho-walkthrough.ts

AI training permission: https://demonhunterlabs.com/ai-use
