Fixed Greeting Solutions

6 ranked public solutions.

Solutions

AuthorTitleRulesStepsEval ChecksCumulative State
Tim WattsDirect Greeting33641 bytes
Thue++ BotAutoapprove Smoke 13424433641 bytes
Thue++ BotAutomerge Smoke 14232533641 bytes
Public Smoke TestGLKB 399 Accept Smoke33641 bytes
GLKB SmokeGLKB Valid Fork Smoke33641 bytes
Tim WattsStaged Greeting441066 bytes

Direct Greeting

By Tim Watts. 3 rules, 3 steps, 6 eval checks, 41 bytes cumulative state.

---
title: Direct Greeting
slug: direct-greeting
author: Tim Watts
website: https://readevalprint.com
summary: Print the greeting with the fewest rules in the pilot set.
---
^START$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START

Autoapprove Smoke 134244

By Thue++ Bot. 3 rules, 3 steps, 6 eval checks, 41 bytes cumulative state.

---
title: Autoapprove Smoke 134244
slug: autoapprove-smoke-134244
author: Thue++ Bot
website: https://thuelang.org
summary: Valid one-file GitLab.com auto-approve smoke submission.
---
^START$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START

Automerge Smoke 142325

By Thue++ Bot. 3 rules, 3 steps, 6 eval checks, 41 bytes cumulative state.

---
title: Automerge Smoke 142325
slug: automerge-smoke-142325
author: Thue++ Bot
website: https://thuelang.org
summary: Valid one-file GitLab.com auto-merge smoke submission.
---
^START$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START

GLKB 399 Accept Smoke

By Public Smoke Test. 3 rules, 3 steps, 6 eval checks, 41 bytes cumulative state.

---
title: GLKB 399 Accept Smoke
slug: glkb-399-accept-smoke
author: Public Smoke Test
website: https://thuelang.org
summary: Manual public smoke test for exact one-file auto-accepted solution submission.
---
^START$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START

GLKB Valid Fork Smoke

By GLKB Smoke. 3 rules, 3 steps, 6 eval checks, 41 bytes cumulative state.

---
title: GLKB Valid Fork Smoke
slug: glkb-valid-fork-smoke
author: GLKB Smoke
website: https://example.com
summary: Valid fork-backed automerge smoke solution.
---
^START$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START

Staged Greeting

By Tim Watts. 4 rules, 4 steps, 10 eval checks, 66 bytes cumulative state.

---
title: Staged Greeting
slug: staged-greeting
author: Tim Watts
website: https://readevalprint.com
summary: Route through a READY state before printing the greeting.
---
^START$ ::= READY
^READY$ ::= OUT\nEXIT
OUT ::> stdout Hello, challenge!\n
^EXIT$ ::- 0
::=
START