Skip to content

Instantly share code, notes, and snippets.

@nzpr
Last active February 2, 2020 21:26
Show Gist options
  • Save nzpr/103897f21a60cbbfd2cc153adec31f97 to your computer and use it in GitHub Desktop.
Save nzpr/103897f21a60cbbfd2cc153adec31f97 to your computer and use it in GitHub Desktop.
Bug
#!/bin/bash
rm $2
deploy_result_path="./deploy.result"
i=0
$RNODE --version
while read contract; do
i=$((i+1))
echo $i
rm $deploy_result_path
todl1=${contract/github\.com\//raw\.githubusercontent\.com/}
todl=${todl1/\/blob\///}
wget $todl -O ./deploy.rho > /dev/null 2>&1
bn=$($RNODE show-blocks | grep blockNumber | head -1 | sed "s/blockNumber://g")
echo "VABN=" $bn
$RNODE deploy --private-key=$3 --phlo-limit 10000000000000 --phlo-price=1 --valid-after-block-number $bn ./deploy.rho > $deploy_result_path
if grep 'Response: Success!' $deploy_result_path > /dev/null 2>&1; then
(time $RNODE propose) &> $deploy_result_path
if grep 'created' $deploy_result_path > /dev/null 2>&1; then
echo "$contract is ok"
cat $deploy_result_path
echo "$contract is ok" >> $2
cat $deploy_result_path >> $2
else
echo "$contract is ok but propose fail"
cat $deploy_result_path
echo "$contract id ok but propose fail" >> $2
cat $deploy_result_path >> $2
fi
else
echo "$contract is bad"
cat $deploy_result_path
echo "$contract is bad" >> $2
cat $deploy_result_path >> $2
fi
done < $1
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-philosophers.rho
https://github.com/crypto-coder/coin-faucet/blob/0b64c5684be2d68045f1d54d1bdc82705e094706/raspi-webapp/coinFaucet.rho
https://github.com/goodyduru/rchain-rock-paper-scissors/blob/d6ae32c207fa1954ef10bb8c3a2fe8fee9a488bd/web/logic.rho
https://github.com/JoshOrndorff/librho/blob/122a509e218b1bdae46d21abba6b133ffa06a96e/MultipleArguments/currying.rho
https://github.com/rchain/perf-harness/blob/71f01a062c26bacfdcd8d65ef9f2dd226d6b3cff/contracts/bruteForce/persistentSend.rho
https://github.com/rchain/perf-harness/blob/71f01a062c26bacfdcd8d65ef9f2dd226d6b3cff/contracts/bruteForce/bothLinear.rho
https://github.com/rchain/perf-harness/blob/71f01a062c26bacfdcd8d65ef9f2dd226d6b3cff/contracts/bruteForce/uniqueChannels.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/mercury-tut/coat_check_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-philosophers.rho
https://github.com/Tesloop/rchainshare/blob/c54e4e198baacbce2e2592ce4890ad145cd41f09/client/userSafe.rho
https://github.com/JoshOrndorff/nth-caller-game/blob/9384c3c7b7bbddb083450e444f807b084ff450b4/integrationTest.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/tut-coat-check.rho
https://github.com/rchain/perf-harness/blob/396ca86731376c95217dfb3a85abb71a69e62ca1/simulations/transfers/b_transfers.rho
https://github.com/8lcarte/rholang/blob/c7ce5e51ee470336578e4313e1678545e2b011c8/tut-philosophers.rho
https://github.com/beetleman/rchain-docker-playground/blob/8b88b4e71382e3ec9035587b7914ba27cdb52b8f/src/tut-philosophers.rho
https://github.com/rchain/perf-harness/blob/396ca86731376c95217dfb3a85abb71a69e62ca1/simulations/transfers/a_walletSetup.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-philosophers.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/main/rholang/MakePoS.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/test/rholang/TestSet.rho
https://github.com/JoshOrndorff/librho/blob/122a509e218b1bdae46d21abba6b133ffa06a96e/MultipleArguments/multiplexing.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/voting.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Free-Variables/Free-vars-in-the-TF-matching.rho
https://github.com/kayvank/node-integration-test/blob/762d4c821f46f26a2e4d3efb51aef051cab0ce15/src/main/resources/rho/rsong.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/mercury-tut/coat_check_test.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/tut-philosophers.rho
https://github.com/luciditytech/andromeda-rchain/blob/11cc51ad3eb8cb3107137fb4f955db081b30d2cc/andromeda.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-registry.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/tut-philosophers.rho
https://github.com/JoshOrndorff/librho/blob/f81d99a949e6da3230a16272fdf9eedab3612cb4/ClassicAlgorithms/Node.rho
https://github.com/rchain/rchain/blob/da739acdf8c9e0acfc71bb9de14c6ea43f96ae94/casper/src/test/resources/PoSTest.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Free-Variables/Free-vars-in-the-TF-matching.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/casper/src/main/rholang/ListOps.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/mercury-tut/mutable_state_test.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/tut-coat-check.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/builder/templates/contracts/tut-philosophers.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/drone/config/contracts/tut-philosophers.rho
https://github.com/JoshOrndorff/librho/blob/ff76a0c06971d6a295d17e170d91103eab9e0216/SelfReproduction/AdamEve.rho
https://github.com/mebyz/rhobust/blob/0147e6c8b2abf079455c54d5b823463e75310aad/rhobustCaller.linked.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/ethSig/ethSig.rho
https://github.com/JoshOrndorff/librho/blob/ce4a18d9a44493858a1ff3c9e8eb6445e3453699/ClassicAlgorithms/mergeSort.rho
https://github.com/rchain/rsong-proxy/blob/f480ea570ca712b23600f70e649c91063689b169/src/main/resources/rho/immersion.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/locker.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/01-deploy-main.rho
https://github.com/fabcotech/rchain-names/blob/a4669a9aa397b7306717a4f671b1e33e3fed6686/names.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Free-Variables/Free-vars-in-the-TF-matching.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/voting-locker/voting.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/2257d7aab49e574a981daa7b4b032374a3e684cd/12-DataStructures/set.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/tut-make-cell.rho
https://github.com/rchain/rchain/blob/5705a86152a1f2037b93ccfa6dc77a85c0f556fb/casper/src/main/resources/ListOps.rho
https://github.com/theophoric/rholang-experiments/blob/98cbd26f24a9dc0003a3df0daf6e1f65b623f27c/lib/MakeMint.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/control.rho
https://github.com/glenbraun/LTP/blob/4d1dce7b0a13ff22136052d295e71cb2c6cd6aa4/CreateTable.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/main/rholang/WalletCheck.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/NonNegativeNumberTest.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/main/rholang/BasicWallet.rho
https://github.com/theophoric/rholang-experiments/blob/3d370d23169a03286c6fd2993529817f1cd9ada6/patterns/kvStore.rho
https://github.com/rchain-community/rchain-dbr/blob/8e5a3ef21d78310c7d96536cde98499f97f61ef8/o2r/communityTrust.rho
https://github.com/tgrospic/rholang-idea/blob/6ffab0cd453e1251c1ff161458862375c59fc676/testData/ide/formatter/complex.rho
https://github.com/tgrospic/rholang-idea/blob/6ffab0cd453e1251c1ff161458862375c59fc676/testData/ide/formatter/complexFormatted.rho
https://github.com/MrChico/krho/blob/830516ef8fc0cb285f459e7054b2da8578cc9f7b/tests/MakeCell.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/mercury-tut/mutable_state_test.rho
https://github.com/RHours/RHours/blob/035c23c1ad79c03fb458c2e6b6a7a7e87c0116f5/Rholang/CreateTable.rho
https://github.com/crypto-coder/coin-faucet/blob/4905d02d2209f29d32790fca219171b43f1b4253/raspi-rchain/rholang/CoinBank.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/08-StateChannelsAndMethods/counter.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/MakeMintTest.rho
https://github.com/MrChico/krho/blob/7271279d3b97c37d77e6acaf44099f43838a372a/tests/philosophers.rho
https://github.com/theophoric/rholang-experiments/blob/cdb04a3defa804f44b1d26a660d9a379e6e397d7/examples/MakeMintTwoWayChallengePrivPurseDecrWGet.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/ListOps.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Free-Variables/Free-vars-in-matching.rho
https://github.com/theophoric/rholang-experiments/blob/98cbd26f24a9dc0003a3df0daf6e1f65b623f27c/lib/LinkedList.rho
https://github.com/inblockio/rchain-glossary/blob/365cf2664a0a4fbf3f973a73faeb10ecfba1dfdb/contracts/mailing-list.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/07-BundlesAndInterpolation/fanmailAsk.rho
https://github.com/theophoric/rholang-experiments/blob/977469c008a3bc6e82d58c6b4b8bdd7c33b5ca05/lib/BasicWallet.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/fanmailAsk.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/main/rholang/MakeMint.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/RhoSpecContract.rho
https://github.com/JoshOrndorff/librho/blob/914163dd8c93d24507a1c6d1fc9e990e67a346fc/BlockchainPatterns/clock.rho
https://github.com/JoshOrndorff/librho/blob/f81d99a949e6da3230a16272fdf9eedab3612cb4/ClassicAlgorithms/KeyValueStore.rho
https://github.com/rchain/rsong/blob/f47a42ff2686faf8b1669627976027ba1551a1ab/core/src/test/resources/rho/rsong.rho
https://github.com/rchain/rchain/blob/da739acdf8c9e0acfc71bb9de14c6ea43f96ae94/casper/src/main/resources/Either.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-hash-functions.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/07-BundlesAndInterpolation/fanmailPublish.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/09-ObjectCapabilities/abortableLaunch.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/9-ObjectCapabilities/abortableLaunch.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/RhoSpecContractTest.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/BasicWallet.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp12/set.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp8/counter.rho
https://github.com/rchain-community/Korea-Workshop/blob/2222ba26902edfd5be2ddde0332be3dfb16ecb94/Session/firstDay/threePeopleWhisper.rho
https://github.com/rchain/rchain/blob/a9d6e99c8c13843ce80d5c2dec648740fb918829/casper/src/main/resources/MakeMint.rho
https://github.com/JoshOrndorff/librho/blob/556fcb65481db9954834749d288caf9db45413ef/ObjectCapabilities/loggingForwarder.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp7/fanmailAsk.rho
https://github.com/rchain-community/rchain-api/blob/494b0546dc80bd12c5f3b2b393cab5af974ddb3a/rclient/src/tools.rho
https://github.com/rchain/rchain/blob/9acf6987c5208ef268ba35203929c016081766fa/rholang/examples/tut-registry.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/voting-locker/locker.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/voting-locker/chairRole.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/voting-locker/voterRole.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/fanmailPublish.rho
https://github.com/JoshOrndorff/node-performance/blob/1d09da235c6571cc3a9287e519dec4dda9329250/rholang/philosophers.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/ListOpsTest.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/5-JoinOperator/patienceSolution.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/patience.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/05-JoinOperator/patienceSolution.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/08-StateChannelsAndMethods/patience.rho
https://github.com/tgrospic/rholang-experimental/blob/d0291dd0b4bd9f1de709d2d2aad818a31e631489/serialize.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Free-Variables/Free-vars-in-matching.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/2257d7aab49e574a981daa7b4b032374a3e684cd/12-DataStructures/list.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/071d7b46134406e25098c1cb5003053126b4ec10/03-TelephoneNamesAndProcesses/telephone3.rho
https://github.com/JoshOrndorff/librho/blob/735803ebab63c3165cd7256c152fa492d14499fd/UnsafeMath/exponents.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Sending-Receiving/sending-and-receiving-arities.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/3-TelephoneNamesAndProcesses/telephone3.rho
https://github.com/glenbraun/LTP/blob/42e9e24b06bc39c74e04cd26966d469231eb4060/TestLTP.rho
https://github.com/glenbraun/LTP/blob/aa4996e138f17976b7ff2c103465dc274544cc1a/rhours.rho
https://github.com/JoshOrndorff/rhopm/blob/7efb7a41638d07af3cd3816516d08451fe0bf11c/StaysOnChain.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-sets-methods.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch%203%20%26%204/Exercise3_Solution.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/mercury-tut/deadlock_test.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/AuthKeyTest.rho
https://github.com/glenbraun/LTP/blob/bbb43c75e7c8fa455ab8a9865106e4fe52f5ab85/GBBasicWallet.rho
https://github.com/rchain/rsong-proxy/blob/0265adefc1da2683b85def0b8d5ffaa0d91d29fd/src/test/resources/rho/story1.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-hash-functions.rho
https://github.com/rchain/perf-harness/blob/66620daae4bb86657ee4f8ba1d6aae2644aacd35/contracts/intdupe.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp12/list.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp5/patienceGame.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp8/patience.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/ethSig/rlp.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/test/rholang/MakePoSTest.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/MakeMint.rho
https://github.com/rchain-community/Korea-Workshop/blob/d41bab01c74a4f5c67e0c19db29fb64d826981ef/Session/randomCharacterization.rho
https://github.com/8lcarte/rholang/blob/c7ce5e51ee470336578e4313e1678545e2b011c8/highCard.rho
https://github.com/ziqiDev/rholang-example/blob/17df3dfed8f7634be28f94311b712e332112567d/tutorial/requestContract/randomNum.rho
https://github.com/JoshOrndorff/advent-of-code-2018/blob/00029d67e06f68115f6590a1510db5775ba483cf/day1/rho/parseInt.rho
https://github.com/glenbraun/LTP/blob/bbb43c75e7c8fa455ab8a9865106e4fe52f5ab85/GBMakeMint.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/test/rholang/MakeMintTest.rho
https://github.com/RHours/RCoopProcess/blob/5c661c7696715b8ed356db884f9efb925679976e/Examples/PMatch.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp8/counterFactory.rho
https://github.com/theophoric/rholang-experiments/blob/98cbd26f24a9dc0003a3df0daf6e1f65b623f27c/lib/WalletCheck.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/5-JoinOperator/launchBad.rho
https://github.com/rchain/rchain/blob/43e873c4cdd55534629c7c364d29f42a7d3af658/rholang/src/main/k/rholang/tests/Sending-Receiving/sending-and-receiving-arities.rho
https://github.com/fabcotech/dappy-cli/blob/8d0ebb1e4caedd9fcc112bf0f5002d3753ad1043/lib/push.rho
https://github.com/glenbraun/LTP/blob/42e9e24b06bc39c74e04cd26966d469231eb4060/TestTables.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-hash-functions.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp9/savings.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/11-PatternMatching/matching.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/4-PersistentSendAndPeek/grandmaCheck.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/jackpotPublish.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/04-PersistentSendAndPeek/grandmaCheck.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/04-PersistentSendAndPeek/putBackAnswer.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/05-JoinOperator/launchBad.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/07-BundlesAndInterpolation/jackpotPublish.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/9e8c401761831d2115a9f359679cb4a1570ae0b0/11-PatternMatching/sendASend.rho
https://github.com/theophoric/rholang-experiments/blob/98cbd26f24a9dc0003a3df0daf6e1f65b623f27c/lib/NonNegativeNumber.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/mercury-tut/deadlock_test.rho
https://github.com/JoshOrndorff/node-performance/blob/1d09da235c6571cc3a9287e519dec4dda9329250/rholang/highCard.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-sets-methods.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-sets-methods.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-bytearray-methods.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-hello.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/tut-hash-functions.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/tut-sets-methods.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Process-Functionality/ground-processes.rho
https://github.com/glenbraun/LTP/blob/b920cb262f5c12e7cc2e9118c2f7f0f3ce02c38b/PureDataObject.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-hello-again.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/counter.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/9-ObjectCapabilities/atc.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/c8659bca183e81b00b1fdd97ec2a10d42c3c7b90/Ch2/Exercise1_Solution.rho
https://github.com/theophoric/rholang-experiments/blob/98cbd26f24a9dc0003a3df0daf6e1f65b623f27c/lib/Either.rho
https://github.com/rchain/rchain/blob/5158aa6c7208b45aed5327a7b5e1dbc348b4ba1a/rholang/examples/vault_demo/2.check_balance.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/tut-hash-functions.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp4/putBack.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch5/Match.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp11/advancedmatcher.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp7/securePizzaShop.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/LockboxTest.rho
https://github.com/rchain/perf-harness/blob/5758d0349d3f3c1ee56f19936af7ebcfc9959f11/simulations/binary/a_binMapStore.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/builder/templates/contracts/tut-sets-methods.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/drone/config/contracts/tut-sets-methods.rho
https://github.com/ziqiDev/rholang-example/blob/17df3dfed8f7634be28f94311b712e332112567d/algorithm/random.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/NonNegativeNumber.rho
https://github.com/rchain-community/Korea-Workshop/blob/2222ba26902edfd5be2ddde0332be3dfb16ecb94/Session/secondDay/randomNumber.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/78d9c5aff9bf40acbfb4fa238815418355eaddd2/Ch2/Exercise3_Solution.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/ba82f7aba6d19041ce84fd470a0ec94186661497/Ch2/Exercise2_Solution.rho
https://github.com/rchain-drone/rchain/blob/7f45cfbb9ee734592e51feda3e203ffe724cadbd/casper/src/main/rholang/Either.rho
https://github.com/rchain/rchain/blob/079045464052699daf7f23ac09b75c2df0ccc1e1/rholang/examples/vault_demo/3.transfer_funds.rho
https://github.com/rchain-community/rchain-api/blob/f1f20816ce0da155279aba9f76fb8f560272fdb1/test/target1.rho
https://github.com/tgrospic/rholang-idea/blob/6ffab0cd453e1251c1ff161458862375c59fc676/testData/parser/token.rho
https://github.com/nzpr/letspay/blob/e2f377878473d916826b668d3a8cd939aa19fd4f/rho_templates/get_balance.rho
https://github.com/glenbraun/LTP/blob/42e9e24b06bc39c74e04cd26966d469231eb4060/CompensationAgreement.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-hello.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Sending-Receiving/persistent-receives.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Std-Pattern-Matching/matching-parallel-processes.rho
https://github.com/rchain/rsong/blob/38b3b173f4b0887d7f0e788110419a8bac3d3967/acq/src/main/resources/rho/rsong-immersion.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-hello-again.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/mercury-tut/iteration_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/tut-iterate.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Sending-Receiving/persistent-receives.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Std-Pattern-Matching/matching-parallel-processes.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-hello.rho
https://github.com/JoshOrndorff/librho/blob/409beb7ab33d1723a0bd59441ec2ec7d1ad2dd7c/SelfReproduction/quine.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-hello-again.rho
https://github.com/inblockio/rchain-glossary/blob/365cf2664a0a4fbf3f973a73faeb10ecfba1dfdb/contracts/auction.rho
https://github.com/RHours/RCoopProcess/blob/5c661c7696715b8ed356db884f9efb925679976e/Examples/PVar.rho
https://github.com/rchain/rchain/blob/a9d6e99c8c13843ce80d5c2dec648740fb918829/casper/src/main/resources/Lockbox.rho
https://github.com/rchain/rchain/blob/a9d6e99c8c13843ce80d5c2dec648740fb918829/casper/src/main/resources/NonNegativeNumber.rho
https://github.com/tgrospic/rholang-experimental/blob/e547cd6077738123672d7508d2dbc72845e9f87c/sys_process_run1.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/5-JoinOperator/launch.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1a6924d6a9f5ea9563e17b9edffb465e81285191/12-DataStructures/tuple.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/05-JoinOperator/launch.rho
https://github.com/rchain/rchain/blob/79bab1267d473704169afee27cf68cd5ccce0218/rholang/examples/tut-bytearray-methods.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/tut-hello.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Sending-Receiving/persistent-receives.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/builder/templates/contracts/tut-hello.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/drone/config/contracts/tut-hello.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Process-Functionality/parallel-processes.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Process-Functionality/sends-and-receives-separate-into-in-and-out-cells.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/tut-hello-again.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/04-PersistentSendAndPeek/putBack.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/07-BundlesAndInterpolation/jackpot.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/e070fe00467fe8ea9adfeee782364ec9951d4817/15-GoingOffChain/insertArbitrary.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/9e8c401761831d2115a9f359679cb4a1570ae0b0/11-PatternMatching/matching.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/jackpot.rho
https://github.com/rchain/rchain/blob/cabd196f33929b168dd6d417a1f112f968e1009a/rholang/examples/vault_demo/1.know_ones_revaddress.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/tut-iterate.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/tut-hello-again.rho
https://github.com/JoshOrndorff/advent-of-code-2018/blob/00029d67e06f68115f6590a1510db5775ba483cf/day1/rho/reduce.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Process-Functionality/parallel-processes.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Process-Functionality/sends-and-receives-separate-into-in-and-out-cells.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1a6924d6a9f5ea9563e17b9edffb465e81285191/12-DataStructures/capitalOf.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/08-StateChannelsAndMethods/counterFactory.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/counterFactory.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp12/tuple.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp4/persistentSend.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp5/launchBad.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp7/fanmailbad.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp7/jackpot.rho
https://github.com/rchain/perf-harness/blob/82ee09d18e3ac2727f2675a16e8674e7b2c2ff91/contracts/wide.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/tut-hello-again.rho
https://github.com/JoshOrndorff/nth-caller-game/blob/934cc89f0702ec90f41eb3c679143c242003f966/nthCaller.rho
https://github.com/glenbraun/LTP/blob/bbb43c75e7c8fa455ab8a9865106e4fe52f5ab85/GBNonNegativeNumber.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch5/Exercise2.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp6/ex.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/main/rholang/BasicWalletFaucet.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/09-ObjectCapabilities/savingsStarter.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/9-ObjectCapabilities/savingsStarter.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Process-Functionality/parallel-processes.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Process-Functionality/sends-and-receives-separate-into-in-and-out-cells.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/BlockDataContractTest.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp11/matcher.rho
https://github.com/tgrospic/rholang-experimental/blob/e547cd6077738123672d7508d2dbc72845e9f87c/http.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp9/atc.rho
https://github.com/rchain/rsong/blob/f47a42ff2686faf8b1669627976027ba1551a1ab/core/src/test/resources/rho/brokeTest.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch%203%20%26%204/Exercise3.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch5/Exercise1_Solution.rho
https://github.com/rchain/rchain/blob/a9d6e99c8c13843ce80d5c2dec648740fb918829/casper/src/main/resources/AuthKey.rho
https://github.com/fabcotech/dappy-blog/blob/556e28ab54cd48f0aa2683c4e00e5ef54cf6c309/articles_contract.rho
https://github.com/rchain/rchain/blob/4886e58c3818d799208a19543dbd19758d9203ec/casper/src/test/resources/FailingResultCollectorTest.rho
https://github.com/tgrospic/rholang-experimental/blob/e547cd6077738123672d7508d2dbc72845e9f87c/sys_process_run2.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/Either.rho
https://github.com/rchain-drone/rchain/blob/7f45cfbb9ee734592e51feda3e203ffe724cadbd/rspace-bench/src/test/resources/rholang/wide-setup.rho
https://github.com/RHours/RCoopProcess/blob/5c661c7696715b8ed356db884f9efb925679976e/Examples/PCollect.rho
https://github.com/glenbraun/LTP/blob/bbb43c75e7c8fa455ab8a9865106e4fe52f5ab85/GBBasicWalletFaucet.rho
https://github.com/glenbraun/LTP/blob/42e9e24b06bc39c74e04cd26966d469231eb4060/ActivityRecord.rho
https://github.com/glenbraun/LTP/blob/42e9e24b06bc39c74e04cd26966d469231eb4060/Library.rho
https://github.com/rchain/rchain/blob/92482b6617864b520ca12c1339880209e03aea03/rspace-bench/src/test/resources/rholang/wide-setup.rho
https://github.com/JoshOrndorff/librho/blob/7b899c03ad2e5033f8f6963ba5fdaf899100692b/MultipleArguments/dispatchingParadigms.rho
https://github.com/tgrospic/rholang-experimental/blob/e547cd6077738123672d7508d2dbc72845e9f87c/nodejs.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/longslow.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/EitherTest.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/stderrAck.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/stdoutAck.rho
https://github.com/fabcotech/rchain-names/blob/a4669a9aa397b7306717a4f671b1e33e3fed6686/create.rho
https://github.com/fabcotech/rchain-names/blob/a4669a9aa397b7306717a4f671b1e33e3fed6686/update.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/hello_world_again.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/time.rho
https://github.com/rchain-community/Korea-Workshop/blob/2222ba26902edfd5be2ddde0332be3dfb16ecb94/Session/firstDay/twoPeopleWhisper.rho
https://github.com/kayvank/myRholangNotes/blob/3235fb593034c5e6753f240447dc3c1529b26001/src/helloAgain.rho
https://github.com/rchain-drone/rchain/blob/7f45cfbb9ee734592e51feda3e203ffe724cadbd/rspace-bench/src/test/resources/rholang/mvcepp.rho
https://github.com/rchain-drone/rchain/blob/7f45cfbb9ee734592e51feda3e203ffe724cadbd/rspace-bench/src/test/resources/rholang/wide.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/test/rholang/NonNegativeNumberTest.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/longslow.rho
https://github.com/rchain/rsong-acquisition/blob/6b5b9c91bfb13a9d74b7f695faf8790eb6a41110/src/test/rho/brke_test.rho
https://github.com/rchain-community/Korea-Workshop/blob/2222ba26902edfd5be2ddde0332be3dfb16ecb94/Session/secondDay/coffeeShop.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-prime.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/stderrAck.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/stdoutAck.rho
https://github.com/inblockio/rchain-glossary/blob/365cf2664a0a4fbf3f973a73faeb10ecfba1dfdb/contracts/concept-poc.rho
https://github.com/inblockio/rchain-glossary/blob/365cf2664a0a4fbf3f973a73faeb10ecfba1dfdb/contracts/some-calculations.rho
https://github.com/MrChico/krho/blob/830516ef8fc0cb285f459e7054b2da8578cc9f7b/tests/HelloWorld.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Sending-Receiving/std-send-and-receive.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/02-valid-vote.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/04-invalid-vote.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/06-closed-vote.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/07-verify-results.rho
https://github.com/rchain/rchain/blob/a228ff2888a62af6d78ea6898d21604d2f91892c/integration-tests/resources/cost/contract_3.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/stderrAck.rho
https://github.com/JoshOrndorff/node-performance/blob/1d09da235c6571cc3a9287e519dec4dda9329250/rholang/comms.rho
https://github.com/rchain/rchain/blob/a228ff2888a62af6d78ea6898d21604d2f91892c/integration-tests/resources/cost/contract_4.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/hello_world_again.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Sending-Receiving/persistent-sends.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Sending-Receiving/infinite-sends-and-receives.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/6-UnforgeableNamesAndAcks/bound1.rho
https://github.com/rchain/rchain/blob/92482b6617864b520ca12c1339880209e03aea03/rspace-bench/src/test/resources/rholang/mvcepp.rho
https://github.com/rchain/rchain/blob/92482b6617864b520ca12c1339880209e03aea03/rspace-bench/src/test/resources/rholang/wide.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/03-valid-vote-twice.rho
https://github.com/proof-media/rho/blob/f8067b29bbd1f915d761b42edc4e13e05b655f00/registry/registry-propose-working.rho
https://github.com/beetleman/rchain-docker-playground/blob/8b88b4e71382e3ec9035587b7914ba27cdb52b8f/src/ping.rho
https://github.com/rchain/rchain/blob/ad9477b2bdfa1c65d25cda42f8ae692da2949f48/rholang/examples/longslow.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Sending-Receiving/persistent-sends.rho
https://github.com/JoshOrndorff/RholangCharityDonation/blob/d00670ddae607fafe544c8cb8727f24bab6590b2/sumList.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/5ab8cc50445df0622ef7d70b45fa8eaf827b1162/11-PatternMatching/missileAttack.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/02-Receiving/pizzaOrder.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/2-Receiving/pizzaOrder.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Sending-Receiving/std-send-and-receive.rho
https://github.com/rchain/perf-harness/blob/5758d0349d3f3c1ee56f19936af7ebcfc9959f11/simulations/mvcepp/mvcepp.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/stderrAck.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/stdoutAck.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/hello_world_again.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/d950829eb8d9bc1fedd81d72b71eb6187942fe0b/10-MoreSyntax/signTest.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/10-MoreSyntax/signTest.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/2-Receiving/persistentPizzaShop.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/4-PersistentSendAndPeek/grandma.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/4-PersistentSendAndPeek/persistentSend.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/fanmailBad.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/mercury-tut/receiving_test.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/stderrAck.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/stdoutAck.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Sending-Receiving/infinite-sends-and-receives.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-prime.rho
https://github.com/rchain/rchain/blob/d932d3388b8bf315f02d512cf70c9fec1736abd0/integration-tests/resources/storage/read-data.rho
https://github.com/rchain/rchain/blob/d932d3388b8bf315f02d512cf70c9fec1736abd0/integration-tests/resources/storage/store-data.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/hello_world_again.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Sending-Receiving/persistent-sends.rho
https://github.com/rchain/rchain/blob/2270f500e7236447e7867fad436213ac54fc7e8c/rholang/examples/time.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/stderrAck.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/stdoutAck.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/11-PatternMatching/intersection.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/5-JoinOperator/P1First.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/6-UnforgeableNamesAndAcks/stdoutAck.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/box.rho
https://github.com/rchain/rsong-proxy/blob/f480ea570ca712b23600f70e649c91063689b169/src/test/rho/rhoTest.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/5ab8cc50445df0622ef7d70b45fa8eaf827b1162/11-PatternMatching/intersection.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/05-JoinOperator/P1First.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/06-UnforgeableNamesAndAcks/stdoutAck.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Process-Functionality/new.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-prime.rho
https://github.com/rchain/perf-harness/blob/5a83d2b369a660b00cd93539e9ae04dabcfa837f/contracts/wide_a_setup.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/builder/templates/contracts/hello_world_again.rho
https://github.com/fabcotech/dappy-cli/blob/42fc9217a1ef7c9822765568e2b36f109d9247fb/lib/update.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/drone/config/contracts/hello_world_again.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/rerun.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp5/p1first.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp8/box.rho
https://github.com/proof-media/rho/blob/f8067b29bbd1f915d761b42edc4e13e05b655f00/registry/registry-server.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/tut-prime.rho
https://github.com/vishwakt/nth-caller-app/blob/10b67496bf01c9c75cddad98f138816ede36ac3e/nth-caller-app/nthCaller.rho
https://github.com/glenbraun/LTP/blob/b920cb262f5c12e7cc2e9118c2f7f0f3ce02c38b/learn.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch%203%20%26%204/Exercise2_Solution.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch5/Exercise2_Solution.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/08-StateChannelsAndMethods/persistentBox.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/e070fe00467fe8ea9adfeee782364ec9951d4817/15-GoingOffChain/lookup.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/persistentBox.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Process-Functionality/new.rho
https://github.com/beetleman/rchain-docker-playground/blob/4358adf89c462b82fc7dbf010c31e6886f581eee/src/tut-prime.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp10/signTest.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp11/signTest.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp15/lookup.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp2/pizzaOrder.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp5/launch.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp8/persistentBox.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/tut-prime.rho
https://github.com/tgrospic/rholang-idea/blob/6ffab0cd453e1251c1ff161458862375c59fc676/testData/ide/formatter/URI.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/builder/templates/contracts/tut-prime.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/drone/config/contracts/tut-prime.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp15/insert.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp2/persisitentPizzaOrder.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp6/stdOutAck.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/BasicWalletFaucet.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/tut-prime.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Process-Functionality/new.rho
https://github.com/ziqiDev/rholang-example/blob/c16d99172911c5fa5eb44062a233a47b03694a0a/algorithm/arraySum.rho
https://github.com/rchain/rsong-acquisition/blob/6b5b9c91bfb13a9d74b7f695faf8790eb6a41110/src/test/rho/story1.rho
https://github.com/rchain/perf-harness/blob/71f01a062c26bacfdcd8d65ef9f2dd226d6b3cff/contracts/bruteForce/persistentListen.rho
https://github.com/rchain/perf-harness/blob/ac6f8ffad74d1de341e89896bca744b201e5cb3c/simulations/wide/a_wide-setup.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/test/rholang/EitherTest.rho
https://github.com/rchain/rchain/blob/da739acdf8c9e0acfc71bb9de14c6ea43f96ae94/casper/src/test/resources/RevAddressTest.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/tests/LinkedList_test.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/tests/IArray_test.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-philosophers.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/packages/IArrayApi.rho
https://github.com/crypto-coder/coin-faucet/blob/0b64c5684be2d68045f1d54d1bdc82705e094706/raspi-webapp/coinFaucet.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.2/tests/LinkedListTest.rho
https://github.com/goodyduru/rchain-rock-paper-scissors/blob/d6ae32c207fa1954ef10bb8c3a2fe8fee9a488bd/web/logic.rho
https://github.com/JoshOrndorff/librho/blob/122a509e218b1bdae46d21abba6b133ffa06a96e/MultipleArguments/currying.rho
https://github.com/rchain/perf-harness/blob/71f01a062c26bacfdcd8d65ef9f2dd226d6b3cff/contracts/bruteForce/persistentSend.rho
https://github.com/rchain/perf-harness/blob/71f01a062c26bacfdcd8d65ef9f2dd226d6b3cff/contracts/bruteForce/bothLinear.rho
https://github.com/rchain/perf-harness/blob/71f01a062c26bacfdcd8d65ef9f2dd226d6b3cff/contracts/bruteForce/uniqueChannels.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/examples/token.rho
https://github.com/theophoric/rholang-experiments/blob/3d370d23169a03286c6fd2993529817f1cd9ada6/patterns/collection.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/mercury-tut/coat_check_test.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/old/regular/token.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/tests/LinkedList_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/tests/IArray_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-philosophers.rho
https://github.com/Tesloop/rchainshare/blob/c54e4e198baacbce2e2592ce4890ad145cd41f09/client/userSafe.rho
https://github.com/JoshOrndorff/nth-caller-game/blob/9384c3c7b7bbddb083450e444f807b084ff450b4/integrationTest.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/packages/IMapApi.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.2/packages/LinkedList.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/tut-coat-check.rho
https://github.com/rchain/perf-harness/blob/396ca86731376c95217dfb3a85abb71a69e62ca1/simulations/transfers/b_transfers.rho
https://github.com/8lcarte/rholang/blob/c7ce5e51ee470336578e4313e1678545e2b011c8/tut-philosophers.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/examples/old/regular/token.rho
https://github.com/beetleman/rchain-docker-playground/blob/8b88b4e71382e3ec9035587b7914ba27cdb52b8f/src/tut-philosophers.rho
https://github.com/rchain/perf-harness/blob/396ca86731376c95217dfb3a85abb71a69e62ca1/simulations/transfers/a_walletSetup.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/packages/BalanceMap.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/packages/MakeMint.rho
https://github.com/theophoric/rholang-experiments/blob/2b15df0df1b54dfdc8578b94c65b9851ea335dc5/exploits/apiHighjack.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-philosophers.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.2/tests/LinkedListTest.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/main/rholang/MakePoS.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/test/rholang/TestSet.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/tests/LinkedList_test.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/tests/IArray_test.rho
https://github.com/luciditytech/andromeda-rchain/blob/11cc51ad3eb8cb3107137fb4f955db081b30d2cc/014_elections.rho
https://github.com/JoshOrndorff/librho/blob/122a509e218b1bdae46d21abba6b133ffa06a96e/MultipleArguments/multiplexing.rho
https://github.com/luciditytech/andromeda-rchain/blob/11cc51ad3eb8cb3107137fb4f955db081b30d2cc/014_elections_v4.rho
https://github.com/koden-km/ObjectModel/blob/4b86f6f65bca786c2d51615af93edbad62556cb0/Projects/UnitTests/Scripts/TestLoops.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/voting.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Free-Variables/Free-vars-in-the-TF-matching.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/packages/LinkedListApi.rho
https://github.com/kayvank/node-integration-test/blob/762d4c821f46f26a2e4d3efb51aef051cab0ce15/src/main/resources/rho/rsong.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/mercury-tut/coat_check_test.rho
https://github.com/theophoric/rholang-experiments/blob/2b15df0df1b54dfdc8578b94c65b9851ea335dc5/examples/car.rho
https://github.com/jimscarver/rho-bot/blob/3f67fccfbd0ff96ceb06cb307be53e5a5547bd67/Community.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/tests/LinkedList_test.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/tests/IArray_test.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/tut-philosophers.rho
https://github.com/luciditytech/andromeda-rchain/blob/11cc51ad3eb8cb3107137fb4f955db081b30d2cc/andromeda.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/tests/BalanceMap_test.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.2/packages/MakeMint.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-registry.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/packages/IArrayApi.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/tests/LinkedList_test.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/tests/IArray_test.rho
https://github.com/theophoric/rholang-experiments/blob/b32155c8315cdaccf13ae4730c4a1703648d2ebc/examples/die.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/tut-philosophers.rho
https://github.com/JoshOrndorff/librho/blob/f81d99a949e6da3230a16272fdf9eedab3612cb4/ClassicAlgorithms/Node.rho
https://github.com/rchain/rchain/blob/da739acdf8c9e0acfc71bb9de14c6ea43f96ae94/casper/src/test/resources/PoSTest.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Free-Variables/Free-vars-in-the-TF-matching.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/casper/src/main/rholang/ListOps.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/mercury-tut/mutable_state_test.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/LinkedArrayAndMapExample.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/old/regular/token.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/tut-coat-check.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.2/tests/LinkedListTest.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Problematic-Examples/Matching-Channels/descriptive-test.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Problematic-Examples/Matching-Text-up-to-Alpha-Equivalence/descriptive%20test.rho
https://github.com/jimscarver/rho-bot/blob/ce4f9fcf41e63edc242870b1d3a8065713d82d48/Ballot.rho
https://github.com/theophoric/rholang-experiments/blob/977469c008a3bc6e82d58c6b4b8bdd7c33b5ca05/examples/bulletinBoard.rho
https://github.com/theophoric/rholang-experiments/blob/3d370d23169a03286c6fd2993529817f1cd9ada6/patterns/forwarder.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/builder/templates/contracts/tut-philosophers.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/drone/config/contracts/tut-philosophers.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/examples/token.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/counterTests.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/packages/IArrayApi.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/08-StateChannelsAndMethods/counterTests.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/packages/IMapApi.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.2/packages/LinkedList.rho
https://github.com/JoshOrndorff/librho/blob/ff76a0c06971d6a295d17e170d91103eab9e0216/SelfReproduction/AdamEve.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/packages/TestSet.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.2/packages/NamedFields.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/packages/IArrayApi.rho
https://github.com/saikumarcheethirala/Example/blob/325fe24420a5575cf4c9e0f8c5d8c8e3a76d2ce0/rholang/examples/token.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.2/tests/LinkedListTest.rho
https://github.com/mebyz/rhobust/blob/0147e6c8b2abf079455c54d5b823463e75310aad/rhobustCaller.linked.rho
https://github.com/cschladetsch/GoogleCode/blob/e7cdedd746881b9d19ed0cebcd8c0bd727a64e51/Library/Cpp/ObjectModel/CppObjectModel/Projects/UnitTests/Scripts/TestLoops.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/ethSig/ethSig.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.2/tests/LinkedListTest.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/packages/BalanceMap.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/packages/MakeMint.rho
https://github.com/JoshOrndorff/librho/blob/ce4a18d9a44493858a1ff3c9e8eb6445e3453699/ClassicAlgorithms/mergeSort.rho
https://github.com/tgrospic/rholang-hs-play/blob/f0929e7e6e856df31edf84839d73fab25069818a/rho-examples/multiauth2.rho
https://github.com/tgrospic/rholang-hs-play/blob/581449ca6f1553ee40ef4d79ae60ca63bd568451/rho-examples/sample1.rho
https://github.com/rchain/rsong-proxy/blob/f480ea570ca712b23600f70e649c91063689b169/src/main/resources/rho/immersion.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/locker.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/examples/old/regular/token.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/makemylocker.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/01-deploy-main.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/tests/MakeMint_test.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.2/packages/TestSet.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/directory.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/old/regular/token.rho
https://github.com/fabcotech/rchain-names/blob/a4669a9aa397b7306717a4f671b1e33e3fed6686/names.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Free-Variables/Free-vars-in-the-TF-matching.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/voting-locker/voting.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/2257d7aab49e574a981daa7b4b032374a3e684cd/12-DataStructures/set.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/tut-make-cell.rho
https://github.com/rchain/rchain/blob/5705a86152a1f2037b93ccfa6dc77a85c0f556fb/casper/src/main/resources/ListOps.rho
https://github.com/saikumarcheethirala/Example/blob/325fe24420a5575cf4c9e0f8c5d8c8e3a76d2ce0/rholang/examples/old/regular/token.rho
https://github.com/theophoric/rholang-experiments/blob/98cbd26f24a9dc0003a3df0daf6e1f65b623f27c/lib/MakeMint.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/control.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/inboxgen.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/newinbox.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/packages/IMapApi.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.2/packages/LinkedList.rho
https://github.com/rchain/Rholang/blob/ed4b5ae4725808b113ce2078b5d34973fb9e1fa6/examples/regular/token.rho
https://github.com/rchain/Rholang/blob/ed4b5ae4725808b113ce2078b5d34973fb9e1fa6/examples/sugar/token.rho
https://github.com/glenbraun/LTP/blob/4d1dce7b0a13ff22136052d295e71cb2c6cd6aa4/CreateTable.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/packages/LinkedListApi.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/main/rholang/WalletCheck.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/tests/IMap_test.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/NonNegativeNumberTest.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/main/rholang/BasicWallet.rho
https://github.com/theophoric/rholang-experiments/blob/3d370d23169a03286c6fd2993529817f1cd9ada6/patterns/kvStore.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/old/regular/token.rho
https://github.com/luciditytech/andromeda-rchain/blob/11cc51ad3eb8cb3107137fb4f955db081b30d2cc/014_test.rho
https://github.com/rchain-community/rchain-dbr/blob/8e5a3ef21d78310c7d96536cde98499f97f61ef8/o2r/communityTrust.rho
https://github.com/tgrospic/rholang-idea/blob/6ffab0cd453e1251c1ff161458862375c59fc676/testData/ide/formatter/complex.rho
https://github.com/tgrospic/rholang-idea/blob/6ffab0cd453e1251c1ff161458862375c59fc676/testData/ide/formatter/complexFormatted.rho
https://github.com/BlockSpaces/coin-faucet/blob/cfc5e52395c325aa85eddf2d8cc73358d4cd0672/raspi-webapp/coinFaucet.rho
https://github.com/MrChico/krho/blob/830516ef8fc0cb285f459e7054b2da8578cc9f7b/tests/MakeCell.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/mercury-tut/mutable_state_test.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/old/regular/token.rho
https://github.com/RHours/RHours/blob/035c23c1ad79c03fb458c2e6b6a7a7e87c0116f5/Rholang/CreateTable.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/tests/BalanceMap_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.2/packages/MakeMint.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/peek0.rho
https://github.com/jimscarver/rho-bot/blob/3f67fccfbd0ff96ceb06cb307be53e5a5547bd67/peek.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/packages/BalanceMap.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/packages/MakeMint.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/packages/IMapApi.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.2/packages/LinkedList.rho
https://github.com/crypto-coder/coin-faucet/blob/4905d02d2209f29d32790fca219171b43f1b4253/raspi-rchain/rholang/CoinBank.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/08-StateChannelsAndMethods/counter.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/packages/IMapApi.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.2/packages/LinkedList.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/MakeMintTest.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/LinkedArrayAndMapExample.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/MakePoS.rho
https://github.com/JoshOrndorff/RChain-Status/blob/b920b0ef352ab194be03797e72ab934eb75be1d1/integrationTest.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/packages/BalanceMap.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/packages/MakeMint.rho
https://github.com/MrChico/krho/blob/7271279d3b97c37d77e6acaf44099f43838a372a/tests/philosophers.rho
https://github.com/theophoric/rholang-experiments/blob/cdb04a3defa804f44b1d26a660d9a379e6e397d7/examples/MakeMintTwoWayChallengePrivPurseDecrWGet.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/ListOps.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Free-Variables/Free-vars-in-matching.rho
https://github.com/koden-km/ObjectModel/blob/4b86f6f65bca786c2d51615af93edbad62556cb0/Projects/UnitTests/Scripts/TestGeneral.rho
https://github.com/theophoric/rholang-experiments/blob/98cbd26f24a9dc0003a3df0daf6e1f65b623f27c/lib/LinkedList.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/vote.rho
https://github.com/tgrospic/rholang-hs-play/blob/581449ca6f1553ee40ef4d79ae60ca63bd568451/rho-examples/compose.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/packages/LinkedListApi.rho
https://github.com/inblockio/rchain-glossary/blob/365cf2664a0a4fbf3f973a73faeb10ecfba1dfdb/contracts/mailing-list.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/07-BundlesAndInterpolation/fanmailAsk.rho
https://github.com/theophoric/rholang-experiments/blob/977469c008a3bc6e82d58c6b4b8bdd7c33b5ca05/lib/BasicWallet.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/packages/BalanceMap.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/packages/MakeMint.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/fanmailAsk.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/main/rholang/MakeMint.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Wildcards-vs-Variables/Wildcard-matching.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/RhoSpecContract.rho
https://github.com/JoshOrndorff/librho/blob/914163dd8c93d24507a1c6d1fc9e990e67a346fc/BlockchainPatterns/clock.rho
https://github.com/JoshOrndorff/librho/blob/f81d99a949e6da3230a16272fdf9eedab3612cb4/ClassicAlgorithms/KeyValueStore.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/MakeMint.rho
https://github.com/theophoric/rholang-experiments/blob/2b15df0df1b54dfdc8578b94c65b9851ea335dc5/exploits/stupidPurseHack.rho
https://github.com/rchain/rsong/blob/f47a42ff2686faf8b1669627976027ba1551a1ab/core/src/test/resources/rho/rsong.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/packages/LinkedListApi.rho
https://github.com/rchain/rchain/blob/da739acdf8c9e0acfc71bb9de14c6ea43f96ae94/casper/src/main/resources/Either.rho
https://github.com/jimscarver/rho-bot/blob/ce4f9fcf41e63edc242870b1d3a8065713d82d48/allowalltovote.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Free-Variables/Free-vars-in-matching.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-hash-functions.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/LinkedArrayAndMapExample.rho
https://github.com/inblockio/rchain-glossary/blob/365cf2664a0a4fbf3f973a73faeb10ecfba1dfdb/contracts/tut-iterate.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/examples/old/regular/token.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/07-BundlesAndInterpolation/fanmailPublish.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/09-ObjectCapabilities/abortableLaunch.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/9-ObjectCapabilities/abortableLaunch.rho
https://github.com/tgrospic/rholang-idea/blob/98968b95f3256600b8c67c3b9af27aa6eb21128e/testData/lexer/token.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/packages/LinkedListApi.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/RhoSpecContractTest.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/BasicWallet.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp12/set.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp8/counter.rho
https://github.com/rchain-community/Korea-Workshop/blob/2222ba26902edfd5be2ddde0332be3dfb16ecb94/Session/firstDay/threePeopleWhisper.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Wildcards-vs-Variables/Wildcard-matching.rho
https://github.com/rchain/rchain/blob/a9d6e99c8c13843ce80d5c2dec648740fb918829/casper/src/main/resources/MakeMint.rho
https://github.com/JoshOrndorff/librho/blob/556fcb65481db9954834749d288caf9db45413ef/ObjectCapabilities/loggingForwarder.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/tests/BalanceMap_test.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.2/packages/MakeMint.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp7/fanmailAsk.rho
https://github.com/rchain/rchain/blob/da739acdf8c9e0acfc71bb9de14c6ea43f96ae94/casper/src/test/resources/RevVaultTest.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/tests/BalanceMap_test.rho
https://github.com/mebyz/rhobust/blob/edf294961759084fab0f868ad067f9cb71d82197/packages/LinkedList.rho
https://github.com/rchain-community/rchain-api/blob/494b0546dc80bd12c5f3b2b393cab5af974ddb3a/rclient/src/tools.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.2/packages/MakeMint.rho
https://github.com/rchain/rchain/blob/9acf6987c5208ef268ba35203929c016081766fa/rholang/examples/tut-registry.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/packages/TestSet.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.2/packages/NamedFields.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/voting-locker/locker.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/tests/SealUnsealTest.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.2/packages/NonNegativeNumber.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/voting-locker/chairRole.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/voting-locker/voterRole.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/tests/IMap_test.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/fanmailPublish.rho
https://github.com/JoshOrndorff/node-performance/blob/1d09da235c6571cc3a9287e519dec4dda9329250/rholang/philosophers.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/LinkedArrayAndMapExample.rho
https://github.com/cschladetsch/GoogleCode/blob/e7cdedd746881b9d19ed0cebcd8c0bd727a64e51/Library/Cpp/ObjectModel/CppObjectModel/Projects/UnitTests/Scripts/TestGeneral.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/ListOpsTest.rho
https://github.com/nzpr/letspay/blob/e2f377878473d916826b668d3a8cd939aa19fd4f/rho_templates/create_genesis_vault.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/packages/TestSet.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/5-JoinOperator/patienceSolution.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/patience.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/05-JoinOperator/patienceSolution.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/08-StateChannelsAndMethods/patience.rho
https://github.com/tgrospic/rholang-experimental/blob/d0291dd0b4bd9f1de709d2d2aad818a31e631489/serialize.rho
https://github.com/rchain-community/Korea-Workshop/blob/082cfa6ba45f1f5233e46799150f1ef9e4f606f0/phaseThreeAnswer/together/charity.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/newDir.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/newuser.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Free-Variables/Free-vars-in-matching.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.2/packages/NamedFields.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/tests/MakeMint_test.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.2/packages/TestSet.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/2257d7aab49e574a981daa7b4b032374a3e684cd/12-DataStructures/list.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/071d7b46134406e25098c1cb5003053126b4ec10/03-TelephoneNamesAndProcesses/telephone3.rho
https://github.com/JoshOrndorff/librho/blob/735803ebab63c3165cd7256c152fa492d14499fd/UnsafeMath/exponents.rho
https://github.com/tgrospic/rholang-hs-play/blob/f0929e7e6e856df31edf84839d73fab25069818a/rho-examples/multiauth.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Sending-Receiving/sending-and-receiving-arities.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/3-TelephoneNamesAndProcesses/telephone3.rho
https://github.com/glenbraun/LTP/blob/42e9e24b06bc39c74e04cd26966d469231eb4060/TestLTP.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/packages/TestSet.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.2/packages/NamedFields.rho
https://github.com/glenbraun/LTP/blob/aa4996e138f17976b7ff2c103465dc274544cc1a/rhours.rho
https://github.com/rchain/rchain/blob/c02215ffb52bc0184eaf472440713a2f89947de1/rholang/src/main/k/rholang/tests/Wildcards-vs-Variables/Wildcard-matching.rho
https://github.com/JoshOrndorff/rhopm/blob/7efb7a41638d07af3cd3816516d08451fe0bf11c/StaysOnChain.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/packages/NonNegativeNumber.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.2/tests/MakeBrandPairTest.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-sets-methods.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/tests/IMap_test.rho
https://github.com/JoshOrndorff/RholangCharityDonation/blob/9d1b669d4fe2442a60a8cec6a89950c88fe6ac8e/charity.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/tut-philosophers.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/addUser.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch%203%20%26%204/Exercise3_Solution.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/mercury-tut/deadlock_test.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/tests/contract_invocation.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/tests/MakeMint_test.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.2/packages/TestSet.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/AuthKeyTest.rho
https://github.com/glenbraun/LTP/blob/bbb43c75e7c8fa455ab8a9865106e4fe52f5ab85/GBBasicWallet.rho
https://github.com/rchain/rsong-proxy/blob/0265adefc1da2683b85def0b8d5ffaa0d91d29fd/src/test/resources/rho/story1.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-hash-functions.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/tests/IMap_test.rho
https://github.com/spencertipping/rho/blob/2617995c82ced336a43ce7e88f0a083d0e6324ef/examples/untyped.rho
https://github.com/mebyz/rhobust/blob/1346c3931334f30800baa3805e5c2203671dff7c/packages/NonNegativeNumber.rho
https://github.com/RHours/RCoopProcess/blob/ec3c2a481a121ef55681c1be51a7b5ad13cc92a9/StatementOfWork/coopSOW.rho
https://github.com/rchain/perf-harness/blob/66620daae4bb86657ee4f8ba1d6aae2644aacd35/contracts/intdupe.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp12/list.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp5/patienceGame.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp8/patience.rho
https://github.com/cschladetsch/Pyro/blob/107ebc9ba48e6441556663585fd1f0e79a906807/Test/TestRho/Scripts/RangeLoops.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/examples/ethSig/rlp.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/tests/IMap_test.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/test/rholang/MakePoSTest.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/MakeMint.rho
https://github.com/rchain-community/Korea-Workshop/blob/d41bab01c74a4f5c67e0c19db29fb64d826981ef/Session/randomCharacterization.rho
https://github.com/8lcarte/rholang/blob/c7ce5e51ee470336578e4313e1678545e2b011c8/highCard.rho
https://github.com/ziqiDev/rholang-example/blob/17df3dfed8f7634be28f94311b712e332112567d/tutorial/requestContract/randomNum.rho
https://github.com/JoshOrndorff/advent-of-code-2018/blob/00029d67e06f68115f6590a1510db5775ba483cf/day1/rho/parseInt.rho
https://github.com/mebyz/rhobust/blob/1346c3931334f30800baa3805e5c2203671dff7c/packages/MakeMint.rho
https://github.com/mebyz/rhobust/blob/edf294961759084fab0f868ad067f9cb71d82197/packages/NamedFields.rho
https://github.com/glenbraun/LTP/blob/bbb43c75e7c8fa455ab8a9865106e4fe52f5ab85/GBMakeMint.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/tests/SealUnsealTest.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.2/packages/NonNegativeNumber.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/test/rholang/MakeMintTest.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/jackPotNicePrinting.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/07-BundlesAndInterpolation/jackPotNicePrinting.rho
https://github.com/RHours/RCoopProcess/blob/5c661c7696715b8ed356db884f9efb925679976e/Examples/PMatch.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp8/counterFactory.rho
https://github.com/theophoric/rholang-experiments/blob/98cbd26f24a9dc0003a3df0daf6e1f65b623f27c/lib/WalletCheck.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/5-JoinOperator/launchBad.rho
https://github.com/rchain/rchain/blob/43e873c4cdd55534629c7c364d29f42a7d3af658/rholang/src/main/k/rholang/tests/Sending-Receiving/sending-and-receiving-arities.rho
https://github.com/Tesloop/rchainshare/blob/c54e4e198baacbce2e2592ce4890ad145cd41f09/client/simpleChannel.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/recieve.rho
https://github.com/fabcotech/dappy-cli/blob/8d0ebb1e4caedd9fcc112bf0f5002d3753ad1043/lib/push.rho
https://github.com/glenbraun/LTP/blob/42e9e24b06bc39c74e04cd26966d469231eb4060/TestTables.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-hash-functions.rho
https://github.com/mebyz/rhobust/blob/edf294961759084fab0f868ad067f9cb71d82197/packages/TestSet.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.2/tests/MakeMintTest.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp9/savings.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/old/regular/Cell1.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/11-PatternMatching/matching.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/4-PersistentSendAndPeek/grandmaCheck.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/jackpotPublish.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/04-PersistentSendAndPeek/grandmaCheck.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/04-PersistentSendAndPeek/putBackAnswer.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/05-JoinOperator/launchBad.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/07-BundlesAndInterpolation/jackpotPublish.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/9e8c401761831d2115a9f359679cb4a1570ae0b0/11-PatternMatching/sendASend.rho
https://github.com/theophoric/rholang-experiments/blob/98cbd26f24a9dc0003a3df0daf6e1f65b623f27c/lib/NonNegativeNumber.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/examples/auction.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/mercury-tut/deadlock_test.rho
https://github.com/JoshOrndorff/node-performance/blob/1d09da235c6571cc3a9287e519dec4dda9329250/rholang/highCard.rho
https://github.com/tgrospic/rholang-hs-play/blob/87d3860417aac64589ad7a7edd589c758a8b3009/rho-examples/multiauth3.rho
https://github.com/tgrospic/rholang-hs-play/blob/87d3860417aac64589ad7a7edd589c758a8b3009/rho-examples/multiauth4.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/packages/NonNegativeNumber.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.2/tests/MakeBrandPairTest.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-sets-methods.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/tests/SealUnsealTest.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.2/packages/NonNegativeNumber.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-sets-methods.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/old/sugar/Cell1.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-bytearray-methods.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-hello.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/tut-hash-functions.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/examples/old/regular/Cell1.rho
https://github.com/yangyha/mpi-AMRVAC/blob/278b23a1910bc3ca875613f518afe29a88c674ad/src/rho/amrvacphys.t.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/tests/SealUnsealTest.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.2/packages/NonNegativeNumber.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/tut-sets-methods.rho
https://github.com/theophoric/rholang-experiments/blob/866da4c58e55d5826a87372211ea5b50710ccb78/exploits/databasePatternEvesdrop.rho
https://github.com/spencertipping/rho/blob/2617995c82ced336a43ce7e88f0a083d0e6324ef/examples/receivers.rho
https://github.com/spencertipping/rho/blob/2617995c82ced336a43ce7e88f0a083d0e6324ef/examples/sequences.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/examples/old/sugar/Cell1.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Process-Functionality/ground-processes.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Sending-Receiving/logical-or-within-patterns.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/09-ObjectCapabilities/atc.rho
https://github.com/Isaac-DeFrain/KFramework/blob/f7846133323bb9d3ef690c84ffe80dfe9d9ed8ec/Languages/Rho-Calc/tests/comm_12outputs.rho
https://github.com/glenbraun/LTP/blob/b920cb262f5c12e7cc2e9118c2f7f0f3ce02c38b/PureDataObject.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/tests/LeftBrace_test.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/tests/RightBrace_test.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-hello-again.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/counter.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/9-ObjectCapabilities/atc.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/c8659bca183e81b00b1fdd97ec2a10d42c3c7b90/Ch2/Exercise1_Solution.rho
https://github.com/theophoric/rholang-experiments/blob/98cbd26f24a9dc0003a3df0daf6e1f65b623f27c/lib/Either.rho
https://github.com/rchain/rchain/blob/5158aa6c7208b45aed5327a7b5e1dbc348b4ba1a/integration-tests/resources/wallets/get_vault_balance.rho
https://github.com/rchain/rchain/blob/5158aa6c7208b45aed5327a7b5e1dbc348b4ba1a/rholang/examples/vault_demo/2.check_balance.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/tests/SealUnsealTest.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.2/packages/NonNegativeNumber.rho
https://github.com/spencertipping/rho/blob/2617995c82ced336a43ce7e88f0a083d0e6324ef/examples/messages.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/tut-hash-functions.rho
https://github.com/rchain-community/Korea-Workshop/blob/2222ba26902edfd5be2ddde0332be3dfb16ecb94/Session/firstDay/true%2Cfalse.rho
https://github.com/Isaac-DeFrain/KFramework/blob/13afcc6006feed85f39c536f45de1029af68bb62/Languages/GroundedRho/AlphaEquiv/tests/receive_par.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/packages/NonNegativeNumber.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.2/tests/MakeBrandPairTest.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp4/putBack.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp7/jackpotPublish.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch5/Match.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/old/auction_end.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/old/sugar/Cell3.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp11/advancedmatcher.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp7/securePizzaShop.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/LockboxTest.rho
https://github.com/rchain/perf-harness/blob/5758d0349d3f3c1ee56f19936af7ebcfc9959f11/simulations/binary/a_binMapStore.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/builder/templates/contracts/tut-sets-methods.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/drone/config/contracts/tut-sets-methods.rho
https://github.com/ziqiDev/rholang-example/blob/17df3dfed8f7634be28f94311b712e332112567d/algorithm/random.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/NonNegativeNumber.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/packages/NonNegativeNumber.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.2/tests/MakeBrandPairTest.rho
https://github.com/rchain-community/Korea-Workshop/blob/2222ba26902edfd5be2ddde0332be3dfb16ecb94/Session/secondDay/randomNumber.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/78d9c5aff9bf40acbfb4fa238815418355eaddd2/Ch2/Exercise3_Solution.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/ba82f7aba6d19041ce84fd470a0ec94186661497/Ch2/Exercise2_Solution.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.2/tests/MakeMintTest.rho
https://github.com/rchain-drone/rchain/blob/7f45cfbb9ee734592e51feda3e203ffe724cadbd/casper/src/main/rholang/Either.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/old/regular/Cell1.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Global-Program-Structure/Free-variable-in-program.rho
https://github.com/rchain/rchain/blob/079045464052699daf7f23ac09b75c2df0ccc1e1/rholang/examples/vault_demo/3.transfer_funds.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Wildcards-vs-Variables/Wildcard-placement.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/examples/auction_end.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/examples/old/sugar/Cell3.rho
https://github.com/rchain-community/rchain-api/blob/f1f20816ce0da155279aba9f76fb8f560272fdb1/test/target1.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/examples/auction.rho
https://github.com/tgrospic/rholang-idea/blob/6ffab0cd453e1251c1ff161458862375c59fc676/testData/parser/token.rho
https://github.com/nzpr/letspay/blob/e2f377878473d916826b668d3a8cd939aa19fd4f/rho_templates/get_balance.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/tests/NonNegativeNumber_test.rho
https://github.com/glenbraun/LTP/blob/42e9e24b06bc39c74e04cd26966d469231eb4060/CompensationAgreement.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/old/sugar/Cell1.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-hello.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Global-Program-Structure/Other-instances-of-HigherProc.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Sending-Receiving/persistent-receives.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Std-Pattern-Matching/matching-parallel-processes.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Wildcards-vs-Variables/Wildcard-matching-2.rho
https://github.com/rchain/rsong/blob/38b3b173f4b0887d7f0e788110419a8bac3d3967/acq/src/main/resources/rho/rsong-immersion.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Global-Program-Structure/Free-variable-in-program.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Wildcards-vs-Variables/Wildcard-placement.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/examples/old/regular/Cell1.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/tests/LeftBrace_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/tests/RightBrace_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-hello-again.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Free-Variables/Finding-free-vars-with-logical-and-between%20processes.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Free-Variables/Finding-free-vars-with-logical-and-between-channels.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/mercury-tut/iteration_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/tut-iterate.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Global-Program-Structure/Other-instances-of-HigherProc.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Sending-Receiving/persistent-receives.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Std-Pattern-Matching/matching-parallel-processes.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Wildcards-vs-Variables/Wildcard-matching-2.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.2/tests/MakeMintTest.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/old/regular/Cell1.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-hello.rho
https://github.com/JoshOrndorff/librho/blob/409beb7ab33d1723a0bd59441ec2ec7d1ad2dd7c/SelfReproduction/quine.rho
https://github.com/saikumarcheethirala/Example/blob/325fe24420a5575cf4c9e0f8c5d8c8e3a76d2ce0/rholang/examples/old/regular/Cell1.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/examples/old/sugar/Cell1.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/allowtovote.rho
https://github.com/rchain/Rholang/blob/ed4b5ae4725808b113ce2078b5d34973fb9e1fa6/examples/regular/Cell1.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/old/sugar/Cell1.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-hello-again.rho
https://github.com/inblockio/rchain-glossary/blob/365cf2664a0a4fbf3f973a73faeb10ecfba1dfdb/contracts/auction.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.2/tests/MakeMintTest.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/old/auction_end.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/old/sugar/Cell3.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/old/regular/Cell1.rho
https://github.com/spencertipping/rho/blob/2617995c82ced336a43ce7e88f0a083d0e6324ef/examples/performance.rho
https://github.com/spencertipping/rho/blob/2617995c82ced336a43ce7e88f0a083d0e6324ef/examples/syntax.rho
https://github.com/saikumarcheethirala/Example/blob/325fe24420a5575cf4c9e0f8c5d8c8e3a76d2ce0/rholang/examples/old/sugar/Cell1.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Free-Variables/Finding-free-vars-with-logical-and-between%20processes.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Free-Variables/Finding-free-vars-with-logical-and-between-channels.rho
https://github.com/RHours/RCoopProcess/blob/5c661c7696715b8ed356db884f9efb925679976e/Examples/PVar.rho
https://github.com/rchain/rchain/blob/a9d6e99c8c13843ce80d5c2dec648740fb918829/casper/src/main/resources/Lockbox.rho
https://github.com/rchain/rchain/blob/a9d6e99c8c13843ce80d5c2dec648740fb918829/casper/src/main/resources/NonNegativeNumber.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.2/tests/MakeMintTest.rho
https://github.com/rchain/Rholang/blob/ed4b5ae4725808b113ce2078b5d34973fb9e1fa6/examples/sugar/Cell1.rho
https://github.com/rchain/rchain/blob/c02215ffb52bc0184eaf472440713a2f89947de1/rholang/src/main/k/rholang/tests/Global-Program-Structure/Free-variable-in-program.rho
https://github.com/rchain/rchain/blob/c02215ffb52bc0184eaf472440713a2f89947de1/rholang/src/main/k/rholang/tests/Wildcards-vs-Variables/Wildcard-placement.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/old/regular/Cell1.rho
https://github.com/nzpr/letspay/blob/e2f377878473d916826b668d3a8cd939aa19fd4f/rho_templates/send_rev.rho
https://github.com/SWAT-Sheffield/smaug-all/blob/01df12e98c734529ff984662badc26eaa3a9138b/branches/vac4.52_sac_cuda/dev/vac4.52mkg_24_06_2010/src/vacphys0.t.rho
https://github.com/SWAT-Sheffield/smaug-all/blob/01df12e98c734529ff984662badc26eaa3a9138b/branches/vac4.52mkg_24_06_2010/src/vacphys0.t.rho
https://github.com/jimscarver/rho-bot/blob/cafa0fc6fad33d189e16ee4106500e8827e02520/mylocker.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/newBallot.rho
https://github.com/tgrospic/rholang-experimental/blob/e547cd6077738123672d7508d2dbc72845e9f87c/sys_process_run1.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/5-JoinOperator/launch.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1a6924d6a9f5ea9563e17b9edffb465e81285191/12-DataStructures/tuple.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/05-JoinOperator/launch.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/tests/LeftBrace_test.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/tests/RightBrace_test.rho
https://github.com/rchain/rchain/blob/79bab1267d473704169afee27cf68cd5ccce0218/rholang/examples/tut-bytearray-methods.rho
https://github.com/rchain/rchain/blob/43e873c4cdd55534629c7c364d29f42a7d3af658/rholang/src/main/k/rholang/tests/Wildcards-vs-Variables/Wildcard-matching-2.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/tut-hello.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/old/sugar/Cell1.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Sending-Receiving/persistent-receives.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/builder/templates/contracts/tut-hello.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/drone/config/contracts/tut-hello.rho
https://github.com/inca/rho/blob/215fb9360f07a7c7d5980bb4b5b2c766f0bcf200/pages/index.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/tests/NonNegativeNumber_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Process-Functionality/parallel-processes.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Process-Functionality/sends-and-receives-separate-into-in-and-out-cells.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/examples/auction_end.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/examples/old/sugar/Cell3.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/tests/LeftBrace_test.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/tests/RightBrace_test.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/tut-hello-again.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/old/auction_end.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/old/sugar/Cell3.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/04-PersistentSendAndPeek/peek.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/04-PersistentSendAndPeek/putBack.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/07-BundlesAndInterpolation/jackpot.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/e070fe00467fe8ea9adfeee782364ec9951d4817/15-GoingOffChain/insertArbitrary.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/9e8c401761831d2115a9f359679cb4a1570ae0b0/11-PatternMatching/matching.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/4-PersistentSendAndPeek/peek.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/jackpot.rho
https://github.com/rchain/rchain/blob/cabd196f33929b168dd6d417a1f112f968e1009a/rholang/examples/vault_demo/1.know_ones_revaddress.rho
https://github.com/rchain/rchain/blob/c02215ffb52bc0184eaf472440713a2f89947de1/rholang/src/main/k/rholang/tests/Free-Variables/Finding-free-vars-with-logical-and-between%20processes.rho
https://github.com/rchain/rchain/blob/c02215ffb52bc0184eaf472440713a2f89947de1/rholang/src/main/k/rholang/tests/Free-Variables/Finding-free-vars-with-logical-and-between-channels.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/mercury-tut/iteration_test.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/tut-iterate.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/tut-hello-again.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/tests/LeftBrace_test.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/tests/RightBrace_test.rho
https://github.com/saikumarcheethirala/Example/blob/325fe24420a5575cf4c9e0f8c5d8c8e3a76d2ce0/rholang/examples/old/sugar/Cell3.rho
https://github.com/JoshOrndorff/advent-of-code-2018/blob/00029d67e06f68115f6590a1510db5775ba483cf/day1/rho/reduce.rho
https://github.com/SWAT-Sheffield/vac/blob/fb2b16a2e606c8fbae3d398a8985049ae3f87182/src/vacphys0.t.rho
https://github.com/rchain/Rholang/blob/ed4b5ae4725808b113ce2078b5d34973fb9e1fa6/examples/sugar/Cell3.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Process-Functionality/parallel-processes.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Process-Functionality/sends-and-receives-separate-into-in-and-out-cells.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/examples/old/regular/Cell1.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/old/auction_end.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/old/sugar/Cell3.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1a6924d6a9f5ea9563e17b9edffb465e81285191/12-DataStructures/capitalOf.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/08-StateChannelsAndMethods/counterFactory.rho
https://github.com/rchain-community/rchain-api/blob/7e1d7640b10397a5ed945d370da7524c51020f7e/src/loader.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/counterFactory.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp12/tuple.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp4/persistentSend.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp5/launchBad.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp7/fanmailbad.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp7/jackpot.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/old/auction_end.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/old/sugar/Cell3.rho
https://github.com/rchain/perf-harness/blob/82ee09d18e3ac2727f2675a16e8674e7b2c2ff91/contracts/wide.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/tut-hello-again.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/tests/NonNegativeNumber_test.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/examples/old/sugar/Cell1.rho
https://github.com/SWAT-Sheffield/SAC_svn/blob/b07e58ba319306a5b20669c0f52d05fafd1599c2/dev/vac4.52_sac_cuda/dev/vac4.52mkg_24_06_2010/src/vacphys0.t.rho
https://github.com/SWAT-Sheffield/SAC_svn/blob/b07e58ba319306a5b20669c0f52d05fafd1599c2/dev/vac4.52mkg_24_06_2010/src/vacphys0.t.rho
https://github.com/JoshOrndorff/nth-caller-game/blob/934cc89f0702ec90f41eb3c679143c242003f966/nthCaller.rho
https://github.com/jonnydubowsky/rholang/blob/84d36303913cfbdaba06cb533f5e5d239bfa2acf/examples/Cell1.rho
https://github.com/glenbraun/LTP/blob/bbb43c75e7c8fa455ab8a9865106e4fe52f5ab85/GBNonNegativeNumber.rho
https://github.com/cschladetsch/Pyro/blob/3d49429974a58dd905e216be698364540fc4a63f/Test/TestRho/Scripts/NestedLoops.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch5/Exercise2.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/dead10f27484c8bee14e6cb6160d32b92a291677/Ch2/Exercise1.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp4/peek.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp6/ex.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/tests/NonNegativeNumber_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Sending-Receiving/logical-and-within-patterns.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/main/rholang/BasicWalletFaucet.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/09-ObjectCapabilities/savingsStarter.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/9-ObjectCapabilities/savingsStarter.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/tests/NonNegativeNumber_test.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Process-Functionality/parallel-processes.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Process-Functionality/sends-and-receives-separate-into-in-and-out-cells.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/BlockDataContractTest.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/744e061113700dbba74034dd63db35a1521b7fac/Ch2/Exercise2.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp11/matcher.rho
https://github.com/koden-km/ObjectModel/blob/4b86f6f65bca786c2d51615af93edbad62556cb0/Projects/UnitTests/Scripts/TestLambda.rho
https://github.com/tgrospic/rholang-experimental/blob/e547cd6077738123672d7508d2dbc72845e9f87c/http.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Sending-Receiving/logical-and-within-patterns.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/examples/auction_end.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/examples/old/sugar/Cell3.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp9/atc.rho
https://github.com/rchain/rsong/blob/f47a42ff2686faf8b1669627976027ba1551a1ab/core/src/test/resources/rho/brokeTest.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch%203%20%26%204/Exercise3.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch5/Exercise1.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch5/Exercise1_Solution.rho
https://github.com/rchain/rchain/blob/a9d6e99c8c13843ce80d5c2dec648740fb918829/casper/src/main/resources/AuthKey.rho
https://github.com/fabcotech/dappy-blog/blob/556e28ab54cd48f0aa2683c4e00e5ef54cf6c309/articles_contract.rho
https://github.com/rchain/rchain/blob/c02215ffb52bc0184eaf472440713a2f89947de1/rholang/src/main/k/rholang/tests/Sending-Receiving/logical-and-within-patterns.rho
https://github.com/rchain/rchain/blob/4886e58c3818d799208a19543dbd19758d9203ec/casper/src/test/resources/FailingResultCollectorTest.rho
https://github.com/SWAT-Sheffield/smaug-all/blob/01df12e98c734529ff984662badc26eaa3a9138b/branches/vac4.52_sac_cuda/dev/vac4.52mkg_24_06_2010/src/vacphys.t.rho
https://github.com/SWAT-Sheffield/smaug-all/blob/01df12e98c734529ff984662badc26eaa3a9138b/branches/vac4.52mkg_24_06_2010/src/vacphys.t.rho
https://github.com/tgrospic/rholang-experimental/blob/e547cd6077738123672d7508d2dbc72845e9f87c/sys_process_run2.rho
https://github.com/cschladetsch/GoogleCode/blob/e7cdedd746881b9d19ed0cebcd8c0bd727a64e51/Library/Cpp/ObjectModel/CppObjectModel/Projects/UnitTests/Scripts/TestLambda.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/Either.rho
https://github.com/rchain-drone/rchain/blob/7f45cfbb9ee734592e51feda3e203ffe724cadbd/rspace-bench/src/test/resources/rholang/wide-setup.rho
https://github.com/RHours/RCoopProcess/blob/5c661c7696715b8ed356db884f9efb925679976e/Examples/PCollect.rho
https://github.com/SWAT-Sheffield/vac/blob/fb2b16a2e606c8fbae3d398a8985049ae3f87182/src/vacphys.t.rho
https://github.com/SWAT-Sheffield/SAC_svn/blob/b07e58ba319306a5b20669c0f52d05fafd1599c2/dev/vac4.52_sac_cuda/dev/vac4.52mkg_24_06_2010/src/vacphys.t.rho
https://github.com/SWAT-Sheffield/SAC_svn/blob/b07e58ba319306a5b20669c0f52d05fafd1599c2/dev/vac4.52mkg_24_06_2010/src/vacphys.t.rho
https://github.com/glenbraun/LTP/blob/bbb43c75e7c8fa455ab8a9865106e4fe52f5ab85/GBBasicWalletFaucet.rho
https://github.com/glenbraun/LTP/blob/42e9e24b06bc39c74e04cd26966d469231eb4060/ActivityRecord.rho
https://github.com/glenbraun/LTP/blob/42e9e24b06bc39c74e04cd26966d469231eb4060/Library.rho
https://github.com/rchain/rchain/blob/92482b6617864b520ca12c1339880209e03aea03/rspace-bench/src/test/resources/rholang/wide-setup.rho
https://github.com/JoshOrndorff/librho/blob/7b899c03ad2e5033f8f6963ba5fdaf899100692b/MultipleArguments/dispatchingParadigms.rho
https://github.com/tgrospic/rholang-experimental/blob/e547cd6077738123672d7508d2dbc72845e9f87c/nodejs.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/tests/XY_test.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/longslow.rho
https://github.com/rchain/rchain/blob/2a1c3680cffd5887e2daea42a055d9409f4aaed9/casper/src/test/resources/EitherTest.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/old/HelloWorld.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/old/regular/Cell3.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/stderrAck.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/stdoutAck.rho
https://github.com/BizarreCake/Rho/blob/6d0f5d5d5f9cb3166b778affab4ead78210ee732/rholib/std/list.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/examples/old/HelloWorld.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/examples/old/regular/Cell3.rho
https://github.com/fabcotech/rchain-names/blob/a4669a9aa397b7306717a4f671b1e33e3fed6686/create.rho
https://github.com/fabcotech/rchain-names/blob/a4669a9aa397b7306717a4f671b1e33e3fed6686/update.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/hello_world_again.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/time.rho
https://github.com/rchain-community/Korea-Workshop/blob/2222ba26902edfd5be2ddde0332be3dfb16ecb94/Session/firstDay/twoPeopleWhisper.rho
https://github.com/kayvank/myRholangNotes/blob/3235fb593034c5e6753f240447dc3c1529b26001/src/helloAgain.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/failure_tests/unbound_name_test.rho
https://github.com/rchain-drone/rchain/blob/7f45cfbb9ee734592e51feda3e203ffe724cadbd/rspace-bench/src/test/resources/rholang/mvcepp.rho
https://github.com/rchain-drone/rchain/blob/7f45cfbb9ee734592e51feda3e203ffe724cadbd/rspace-bench/src/test/resources/rholang/wide.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/examples/hello_world_again.rho
https://github.com/inblockio/rchain-glossary/blob/365cf2664a0a4fbf3f973a73faeb10ecfba1dfdb/contracts/print-console.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/test/rholang/NonNegativeNumberTest.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/tests/XY_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/longslow.rho
https://github.com/inca/semiquiz/blob/278f4c36e40cfc230e070ebd3141fba4480a5247/test/samples/inputText.rho
https://github.com/rchain/rsong-acquisition/blob/6b5b9c91bfb13a9d74b7f695faf8790eb6a41110/src/test/rho/brke_test.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Problematic-Examples/Precedence-rules/:%5C%2C%20%5C:.rho
https://github.com/rchain-community/Korea-Workshop/blob/2222ba26902edfd5be2ddde0332be3dfb16ecb94/Session/secondDay/coffeeShop.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/old/sugar/Cell2.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/tut-prime.rho
https://github.com/inca/semiquiz/blob/278f4c36e40cfc230e070ebd3141fba4480a5247/test/samples/inputTextDefault.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Problematic-Examples/connectives-in-the-freevars-function.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/old/HelloWorld.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/old/regular/Cell3.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/stderrAck.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/stdoutAck.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Sending-Receiving/infinite-sends-and-receives.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/test/resources/tests/mercury-tut/receiving_test.rho
https://github.com/inblockio/rchain-glossary/blob/365cf2664a0a4fbf3f973a73faeb10ecfba1dfdb/contracts/concept-poc.rho
https://github.com/inblockio/rchain-glossary/blob/365cf2664a0a4fbf3f973a73faeb10ecfba1dfdb/contracts/some-calculations.rho
https://github.com/MrChico/krho/blob/830516ef8fc0cb285f459e7054b2da8578cc9f7b/tests/HelloWorld.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Problematic-Examples/Precedence-rules/%40%2C%20%7C%2C%20!.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Sending-Receiving/std-send-and-receive.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/examples/old/sugar/Cell2.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/02-valid-vote.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/04-invalid-vote.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/06-closed-vote.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/07-verify-results.rho
https://github.com/J-Place/hvactapes/blob/8a017fe49bda3871f48a7dd9dd604f6c350b1d61/temp/install/E5A90F7121E843D29933B922E62C579D/en1uvsl3.rho
https://github.com/inca/semiquiz/blob/278f4c36e40cfc230e070ebd3141fba4480a5247/test/samples/associativeGroup.rho
https://github.com/rchain/rchain/blob/a228ff2888a62af6d78ea6898d21604d2f91892c/integration-tests/resources/cost/contract_3.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/tests/XY_test.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/stderrAck.rho
https://github.com/JoshOrndorff/node-performance/blob/1d09da235c6571cc3a9287e519dec4dda9329250/rholang/comms.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.2/tests/NamedFieldsTest.rho
https://github.com/rchain/rchain/blob/a228ff2888a62af6d78ea6898d21604d2f91892c/integration-tests/resources/cost/contract_4.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/hello_world_again.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Free-Variables/Finding-free-vars-with-logical-or-between%20processes.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Free-Variables/Finding-free-vars-with-logical-or-between-channels.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Global-Program-Structure/Logical-and-in-program.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Global-Program-Structure/Logical-or-in-program.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Sending-Receiving/persistent-sends.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Sending-Receiving/infinite-sends-and-receives.rho
https://github.com/rchain/Rholang/blob/ed4b5ae4725808b113ce2078b5d34973fb9e1fa6/examples/HelloWorld.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/6-UnforgeableNamesAndAcks/bound1.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/fanmailEve.rho
https://github.com/rchain/rchain/blob/92482b6617864b520ca12c1339880209e03aea03/rspace-bench/src/test/resources/rholang/mvcepp.rho
https://github.com/rchain/rchain/blob/92482b6617864b520ca12c1339880209e03aea03/rspace-bench/src/test/resources/rholang/wide.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/failure_tests/unbound_name_test.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/tests/XY_test.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/06-UnforgeableNamesAndAcks/bound1.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/07-BundlesAndInterpolation/fanmailEve.rho
https://github.com/JoshOrndorff/rhopm/blob/54453df1b0fc5311ef1fca58d18d8d877521d5b4/importTemplate.rho
https://github.com/JoshOrndorff/rhopm/blob/06b9dfb8e466119464b3faf2a2afd6f9f6f0aeb4/exampleProject/math/fourth.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/examples/old/HelloWorld.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/examples/old/regular/Cell3.rho
https://github.com/proof-media/rho/blob/ea63fd3191b859e6289d719bf2a0f55fe7634c49/voting/03-valid-vote-twice.rho
https://github.com/proof-media/rho/blob/f8067b29bbd1f915d761b42edc4e13e05b655f00/registry/registry-propose-working.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/old/HelloWorld.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/old/regular/Cell3.rho
https://github.com/beetleman/rchain-docker-playground/blob/8b88b4e71382e3ec9035587b7914ba27cdb52b8f/src/ping.rho
https://github.com/rchain/rchain/blob/ad9477b2bdfa1c65d25cda42f8ae692da2949f48/rholang/examples/longslow.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/tests/XY_test.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Free-Variables/Finding-free-vars-with-logical-or-between%20processes.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Free-Variables/Finding-free-vars-with-logical-or-between-channels.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Global-Program-Structure/Logical-and-in-program.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Global-Program-Structure/Logical-or-in-program.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Sending-Receiving/persistent-sends.rho
https://github.com/JoshOrndorff/RholangCharityDonation/blob/d00670ddae607fafe544c8cb8727f24bab6590b2/sumList.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/5ab8cc50445df0622ef7d70b45fa8eaf827b1162/11-PatternMatching/missileAttack.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/02-Receiving/pizzaOrder.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/08-StateChannelsAndMethods/checkMethod.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/2-Receiving/pizzaOrder.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/checkMethod.rho
https://github.com/saikumarcheethirala/Example/blob/325fe24420a5575cf4c9e0f8c5d8c8e3a76d2ce0/rholang/examples/old/HelloWorld.rho
https://github.com/saikumarcheethirala/Example/blob/325fe24420a5575cf4c9e0f8c5d8c8e3a76d2ce0/rholang/examples/old/regular/Cell3.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Sending-Receiving/std-send-and-receive.rho
https://github.com/rchain/Rholang/blob/ed4b5ae4725808b113ce2078b5d34973fb9e1fa6/examples/regular/Cell3.rho
https://github.com/rchain/perf-harness/blob/5758d0349d3f3c1ee56f19936af7ebcfc9959f11/simulations/mvcepp/mvcepp.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/old/HelloWorld.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/old/regular/Cell3.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/stderrAck.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/stdoutAck.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/send.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/examples/hello_world_again.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/hello_world_again.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/d950829eb8d9bc1fedd81d72b71eb6187942fe0b/10-MoreSyntax/signTest.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/10-MoreSyntax/signTest.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/2-Receiving/persistentPizzaShop.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/4-PersistentSendAndPeek/grandma.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/4-PersistentSendAndPeek/persistentSend.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/7-Bundles/fanmailBad.rho
https://github.com/rchain/rchain/blob/442665c0e0e4620ff23e700587227e6496c1f7fe/rholang/src/test/resources/tests/mercury-tut/receiving_test.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/stderrAck.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/stdoutAck.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/old/HelloWorld.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/old/regular/Cell3.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Sending-Receiving/infinite-sends-and-receives.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/old/sugar/Cell2.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/tut-prime.rho
https://github.com/saikumarcheethirala/Example/blob/325fe24420a5575cf4c9e0f8c5d8c8e3a76d2ce0/rholang/examples/hello_world_again.rho
https://github.com/rchain/rchain/blob/c02215ffb52bc0184eaf472440713a2f89947de1/rholang/src/main/k/rholang/tests/Global-Program-Structure/Logical-or-in-program.rho
https://github.com/rchain/rchain/blob/d932d3388b8bf315f02d512cf70c9fec1736abd0/integration-tests/resources/storage/read-data.rho
https://github.com/rchain/rchain/blob/d932d3388b8bf315f02d512cf70c9fec1736abd0/integration-tests/resources/storage/store-data.rho
https://github.com/rchain/rchain/blob/43e873c4cdd55534629c7c364d29f42a7d3af658/rholang/src/main/k/rholang/tests/Free-Variables/Finding-free-vars-with-logical-or-between-channels.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/hello_world_again.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Sending-Receiving/persistent-sends.rho
https://github.com/rchain/rchain/blob/2270f500e7236447e7867fad436213ac54fc7e8c/rholang/examples/time.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/stderrAck.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/stdoutAck.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/tut-hello.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/11-PatternMatching/intersection.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/5-JoinOperator/P1First.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/6-UnforgeableNamesAndAcks/stdoutAck.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/box.rho
https://github.com/rchain/rchain/blob/c02215ffb52bc0184eaf472440713a2f89947de1/rholang/src/main/k/rholang/tests/Free-Variables/Finding-free-vars-with-logical-or-between%20processes.rho
https://github.com/rchain/rchain/blob/c02215ffb52bc0184eaf472440713a2f89947de1/rholang/src/main/k/rholang/tests/Global-Program-Structure/Logical-and-in-program.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Problematic-Examples/Wildcard-with-logical-or.rho
https://github.com/rchain/rsong-proxy/blob/f480ea570ca712b23600f70e649c91063689b169/src/test/rho/rhoTest.rho
https://github.com/cschladetsch/Pyro/blob/107ebc9ba48e6441556663585fd1f0e79a906807/Test/TestRho/Scripts/ForLoops.rho
https://github.com/jimscarver/rho-bot/blob/549984a6114be79a81908098d2de8e6e9bc03345/foreach.rho
https://github.com/tgrospic/rholang-hs-play/blob/f0929e7e6e856df31edf84839d73fab25069818a/rho-examples/par_buffer.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/5ab8cc50445df0622ef7d70b45fa8eaf827b1162/11-PatternMatching/intersection.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/05-JoinOperator/P1First.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/06-UnforgeableNamesAndAcks/stdoutAck.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.2/tests/NamedFieldsTest.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/src/main/k/rholang/tests/Process-Functionality/new.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/examples/old/sugar/Cell2.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/old/sugar/Cell2.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/tut-prime.rho
https://github.com/inca/rho/blob/215fb9360f07a7c7d5980bb4b5b2c766f0bcf200/samples/TABLE%20TR%20classes.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp6/predict.rho
https://github.com/rchain/perf-harness/blob/5a83d2b369a660b00cd93539e9ae04dabcfa837f/contracts/wide_a_setup.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/builder/templates/contracts/hello_world_again.rho
https://github.com/fabcotech/dappy-cli/blob/42fc9217a1ef7c9822765568e2b36f109d9247fb/lib/update.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/drone/config/contracts/hello_world_again.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/rerun.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp5/p1first.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp8/box.rho
https://github.com/JoshOrndorff/rhopm/blob/edaf2f950906e2c2a60535fe8099541b4e5e4d06/exampleProject/powers.rho
https://github.com/proof-media/rho/blob/f8067b29bbd1f915d761b42edc4e13e05b655f00/registry/registry-server.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/examples/old/HelloWorld.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/examples/old/regular/Cell3.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/old/sugar/Cell2.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/tut-prime.rho
https://github.com/saikumarcheethirala/Example/blob/325fe24420a5575cf4c9e0f8c5d8c8e3a76d2ce0/rholang/examples/old/sugar/Cell2.rho
https://github.com/vishwakt/nth-caller-app/blob/10b67496bf01c9c75cddad98f138816ede36ac3e/nth-caller-app/nthCaller.rho
https://github.com/rchain/Rholang/blob/ed4b5ae4725808b113ce2078b5d34973fb9e1fa6/examples/sugar/Cell2.rho
https://github.com/glenbraun/LTP/blob/b920cb262f5c12e7cc2e9118c2f7f0f3ce02c38b/learn.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch%203%20%26%204/Exercise2.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch%203%20%26%204/Exercise2_Solution.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch5/Exercise2_Solution.rho
https://github.com/nkuitse/rho/blob/7c4d351cc2b968cb7033d48db811d8ea5a12f2ed/example/sources.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/1dddbce16e53ca797e6e25e72f00f6d2401cb970/08-StateChannelsAndMethods/persistentBox.rho
https://github.com/JoshOrndorff/LearnRholangByExample/blob/e070fe00467fe8ea9adfeee782364ec9951d4817/15-GoingOffChain/lookup.rho
https://github.com/TrenchFloat/1st-repo/blob/0fa31138d929215cd52ed76303d54ba2a12496c5/8-StateChannelsAndMethods/persistentBox.rho
https://github.com/differentialderek/rholang/blob/913328596d1f140352906857adb5b386bb408e58/tests/Process-Functionality/new.rho
https://github.com/beetleman/rchain-docker-playground/blob/4358adf89c462b82fc7dbf010c31e6886f581eee/src/tut-prime.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp10/signTest.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp11/signTest.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp15/lookup.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp2/pizzaOrder.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp5/launch.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp8/persistentBox.rho
https://github.com/rchain/rchain/blob/71cc3988637ac5452be292a70c18d65c08b30de2/rholang/examples/tut-prime.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/old/sugar/Cell2.rho
https://github.com/jonnydubowsky/rholang/blob/84d36303913cfbdaba06cb533f5e5d239bfa2acf/examples/Cell3.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.2/tests/NamedFieldsTest.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/examples/hello_world_again.rho
https://github.com/tgrospic/rholang-idea/blob/6ffab0cd453e1251c1ff161458862375c59fc676/testData/ide/formatter/URI.rho
https://github.com/tgrospic/rholang-idea/blob/6ffab0cd453e1251c1ff161458862375c59fc676/testData/ide/formatter/URIFormatted.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/builder/templates/contracts/tut-prime.rho
https://github.com/rchain/perf-harness/blob/29e1ddd3ed1c532acff5455cedd3952daddb9728/drone/config/contracts/tut-prime.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp15/insert.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp2/persisitentPizzaOrder.rho
https://github.com/goodyduru/myrholang-lessons/blob/fdee6c2cfaf942a5aa4b5087e3a87a688e9aa780/chp6/stdOutAck.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/casper/BasicWalletFaucet.rho
https://github.com/rchain-community/rchain.cloud/blob/83900d6d40af126da9a283b9fb6480bc69b78b86/backend/app/public/examples/tut-prime.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.2/tests/NonNegativeNumberTest.rho
https://github.com/flowpoint/atom_language_rholang/blob/e2452f8cd78dccb6a4984a1cb0d5a02d00daf751/samples/test.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.2/tests/NamedFieldsTest.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/src/main/k/rholang/tests/Process-Functionality/new.rho
https://github.com/jeremybeal11/Rholang_Exercises/blob/6b3e3899a8a7af5567088c01d6ca790d20caa593/Ch%203%20%26%204/Exercise4.rho
https://github.com/spencertipping/rho/blob/2617995c82ced336a43ce7e88f0a083d0e6324ef/examples/helloworld.rho
https://github.com/spencertipping/rho/blob/2617995c82ced336a43ce7e88f0a083d0e6324ef/src/rho/structures/avltree.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/examples/old/sugar/Cell2.rho
https://github.com/ziqiDev/rholang-example/blob/c16d99172911c5fa5eb44062a233a47b03694a0a/algorithm/arraySum.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/tests/arithmetic_test.rho
https://github.com/cschladetsch/Pyro/blob/5ae06c360d2d0326fe194848744dacc58b49644e/Test/TestRho/Scripts/ResumeAfter.rho
https://github.com/rchain/rsong-acquisition/blob/6b5b9c91bfb13a9d74b7f695faf8790eb6a41110/src/test/rho/store_test.rho
https://github.com/rchain/rsong-acquisition/blob/6b5b9c91bfb13a9d74b7f695faf8790eb6a41110/src/test/rho/story1.rho
https://github.com/BizarreCake/Rho/blob/6d0f5d5d5f9cb3166b778affab4ead78210ee732/rholib/std/streams.rho
https://github.com/SWAT-Sheffield/smaug-all/blob/01df12e98c734529ff984662badc26eaa3a9138b/branches/vac4.52_sac_cuda/dev/vac4.52mkg_24_06_2010/src/vacpar.t.rho
https://github.com/SWAT-Sheffield/smaug-all/blob/01df12e98c734529ff984662badc26eaa3a9138b/branches/vac4.52mkg_24_06_2010/src/vacpar.t.rho
https://github.com/spencertipping/rho/blob/2617995c82ced336a43ce7e88f0a083d0e6324ef/src/rho/signal.rho
https://github.com/rchain/perf-harness/blob/71f01a062c26bacfdcd8d65ef9f2dd226d6b3cff/contracts/bruteForce/persistentListen.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.2/tests/NonNegativeNumberTest.rho
https://github.com/RafalSumislawski/swaggerify/blob/a901188016460adf559a79383053686d2d054f77/LICENSE.rho
https://github.com/SWAT-Sheffield/vac/blob/fb2b16a2e606c8fbae3d398a8985049ae3f87182/src/vacpar.t.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.2/tests/NonNegativeNumberTest.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/tests/arithmetic_test.rho
https://github.com/SWAT-Sheffield/SAC_svn/blob/b07e58ba319306a5b20669c0f52d05fafd1599c2/dev/vac4.52_sac_cuda/dev/vac4.52mkg_24_06_2010/src/vacpar.t.rho
https://github.com/SWAT-Sheffield/SAC_svn/blob/b07e58ba319306a5b20669c0f52d05fafd1599c2/dev/vac4.52mkg_24_06_2010/src/vacpar.t.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.2/tests/NonNegativeNumberTest.rho
https://github.com/saikumarcheethirala/Example/blob/325fe24420a5575cf4c9e0f8c5d8c8e3a76d2ce0/rholang/tests/arithmetic_test.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.2/tests/NonNegativeNumberTest.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.1/packages/MakeBrandPair.rho
https://github.com/zsluedem/China-rnode-test-session/blob/965080b8e916073a2e770952185a3a0f5e285d59/examples/linking/v0.2/packages/MakeBrandPair.rho
https://github.com/cloovoo/jchain/blob/9a9da66ca6abe7162bc9e9d08064e5bf8fa4c6f2/rholang/tests/comparison_test.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/tests/arithmetic_test.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.1/packages/MakeBrandPair.rho
https://github.com/rchain-drone/rchain/blob/854fab8e504c2ff8e6736a8cdfef358731cd4093/rholang/examples/linking/v0.2/packages/MakeBrandPair.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.1/packages/MakeBrandPair.rho
https://github.com/kayvank/arm-rnode/blob/03f08c251295b79441befdbeeae5e7ef9a372e50/bin-image/examples/linking/v0.2/packages/MakeBrandPair.rho
https://github.com/cloovoo/rchain/blob/490f131fb1b47acb45efa657275791fe45d6220e/rholang/tests/comparison_test.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.1/packages/MakeBrandPair.rho
https://github.com/tgrospic/rchain-network/blob/d10b5598e6eba19c6f2e6ce62d00bba841e77633/contracts/linking/v0.2/packages/MakeBrandPair.rho
https://github.com/saikumarcheethirala/Example/blob/325fe24420a5575cf4c9e0f8c5d8c8e3a76d2ce0/rholang/tests/comparison_test.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.1/packages/MakeBrandPair.rho
https://github.com/rchain/rchain/blob/bba537a7b915b1aaf808672961f52055ff64dd40/rholang/examples/linking/v0.2/packages/MakeBrandPair.rho
https://github.com/spencertipping/rho/blob/2617995c82ced336a43ce7e88f0a083d0e6324ef/src/rho/strict-seq.rho
https://github.com/jeremybusk/jeremy-rchain-play/blob/0ebd9bff2a0502b8f5bf287696aca9ce2f60c336/rholang/tests/comparison_test.rho
https://github.com/mebyz/rhobust/blob/edf294961759084fab0f868ad067f9cb71d82197/packages/MakeBrandPair.rho
https://github.com/rchain/perf-harness/blob/ac6f8ffad74d1de341e89896bca744b201e5cb3c/simulations/wide/a_wide-setup.rho
https://github.com/rchain-drone/rchain/blob/a719f661af6da771d26c9ad50b1d2422a2abc2d9/casper/src/test/rholang/EitherTest.rho
https://github.com/rchain/rchain/blob/da739acdf8c9e0acfc71bb9de14c6ea43f96ae94/casper/src/test/resources/RevAddressTest.rho
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment