From f9b39be53174f76ac7bc32ce1fd4d52d4773e056 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Mon, 17 Sep 2018 10:05:06 +0200 Subject: Added readme for completed bot I also had to remove the readme that had been hanging around from the sample bot. --- README.md | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md deleted file mode 100644 index 0b97c14..0000000 --- a/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Rust Sample Bot - -Rust is a systems programming language, giving programmers the low -level control that they would usually associate with a programming -langauge like C or C++, but modern high level programming features. - -Rust is a compiled language, which compiles to an -architecture-specific binary. - -For getting started with this bot in particular, I've done a write up -about [writing a Rust bot for the Entelect challenge](https://www.worthe-it.co.za/programming/2018/05/02/writing-an-entelect-challenge-bot-in-rust.html). - -## Environment Setup - -The Rust compiler toolchain can be downloaded from the Rust project -website. - -https://www.rust-lang.org/en-US/install.html - -## Compilation - -The bot can be built using the Rust build tool, Cargo. For the sake of -the competition, the `--release` flag should be used. - -``` -cargo build --release -``` - -## Running - -After compilation, there will be an executable in -`target/release/`. - -For example, this sample bot's name is -`entelect_challenge_rust_sample`, so the executable to be run is -`target/release/entelect_challenge_rust_sample` on Linux or -`target/release/entelect_challenge_rust_sample.exe` on Windows. - -- cgit v1.2.3