From 66b83af490ce42204b7209f735ae5a3f05f5104c Mon Sep 17 00:00:00 2001 From: Chase Fleming Date: Tue, 22 Oct 2024 10:25:54 -0700 Subject: [PATCH] Remove user having to copy script (#962) Co-authored-by: Chase Fleming <1666730+chasefleming@users.noreply.github.com> --- docs/build/getting-started/quickstarts/hello-world.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/build/getting-started/quickstarts/hello-world.md b/docs/build/getting-started/quickstarts/hello-world.md index 6d64c2cd7c..b80be29f45 100644 --- a/docs/build/getting-started/quickstarts/hello-world.md +++ b/docs/build/getting-started/quickstarts/hello-world.md @@ -50,13 +50,11 @@ Let's break down what this script does: - **Return Statement**: `return HelloWorld.greeting` accesses the greeting variable from the `HelloWorld` contract and returns its value. ### Steps to Execute the Script - - - **Open the Flow Runner**: Click the icon to orient the Flow Runner editor vertically. The Flow Runner is an online tool that allows you to write and execute Cadence scripts directly in your browser. -- **Copy the Script**: Copy the script above into the Flow Runner's input area. + - **Run the Script**: Click the Run button to execute the script. - **View the Output**: Observe the output returned by the script. You should see the current value of the `greeting` variable, which is `"Hello, World!"`. - + ## Understanding the `HelloWorld` Contract