This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # You can add this file to your crontab to request 500 Testnet WAX every 24 hours like this: | |
| # 0 0 * * * /path/to/script/request_wax.sh waxacctname1 | |
| if [[ "$#" < "1" ]]; then | |
| /bin/echo "USAGE: $0 <account name>" | |
| exit 1 | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Test { | |
| private final Chess chess; | |
| public Test(Chess chess) { | |
| this.chess = chess; | |
| } | |
| public void lol() { | |
| chess.printBoard(); | |
| } |