-
Notifications
You must be signed in to change notification settings - Fork 660
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* commit leo example tests * improve leo example readme's and ci * commit leo token example script
- Loading branch information
Showing
6 changed files
with
72 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
( | ||
# Create a new Leo lottery example program. | ||
$LEO example lottery || exit | ||
ls -la | ||
cd lottery && ls -la | ||
|
||
# Run the play function. | ||
$LEO run play || exit | ||
) | ||
|
||
( | ||
# Create a new Leo tictactoe example program. | ||
$LEO example tictactoe || exit | ||
ls -la | ||
cd tictactoe && ls -la | ||
|
||
# Create a new game. | ||
$LEO run new || exit | ||
|
||
# Create a make a move. | ||
$LEO run make_move || exit | ||
) | ||
|
||
( | ||
#Create a new Leo token example program. | ||
$LEO example token || exit | ||
ls -la | ||
cd token && ls -la | ||
|
||
# Run the mint_public function. | ||
$LEO run mint_public || exit | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters