fix program names

This commit is contained in:
collin 2022-08-05 11:14:58 -07:00
parent 19f51875b9
commit 8f9c7efbed
2 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
# leo new hello-world
# Create a new Leo program named `foo` and run `leo build`.
$LEO new hello-world
$LEO new foo
ls -la
cd hello-world && ls -la
cd foo && ls -la
$LEO build
# Assert that the 'outputs' folder is not empty

View File

@ -1,7 +1,7 @@
# Create a new foo project.
# Create a new Leo program named `foo`.
$LEO new foo
ls -la
cd foo && ls -la
# Try to compile and run the template project.
# Try to run `leo build`.
$LEO run