mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-22 13:25:30 +03:00
36 lines
592 B
Bash
Executable File
36 lines
592 B
Bash
Executable File
(
|
|
# Create a new Leo lottery example program.
|
|
$LEO example lottery || exit
|
|
ls -la
|
|
cd lottery && ls -la
|
|
|
|
# Run the script.
|
|
chmod +x ./run.sh || exit
|
|
export -f leo
|
|
./run.sh || exit
|
|
)
|
|
|
|
(
|
|
# Create a new Leo tictactoe example program.
|
|
$LEO example tictactoe || exit
|
|
ls -la
|
|
cd tictactoe && ls -la
|
|
|
|
# Run the script.
|
|
chmod +x ./run.sh || exit
|
|
export -f leo
|
|
./run.sh || exit
|
|
)
|
|
|
|
(
|
|
#Create a new Leo token example program.
|
|
$LEO example token || exit
|
|
ls -la
|
|
cd token && ls -la
|
|
|
|
# Run the script.
|
|
chmod +x ./run.sh || exit
|
|
export -f leo
|
|
./run.sh || exit
|
|
)
|