summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2018-09-17 10:05:06 +0200
committerJustin Worthe <justin@worthe-it.co.za>2018-09-17 10:05:06 +0200
commitf9b39be53174f76ac7bc32ce1fd4d52d4773e056 (patch)
tree8beb078ab13be495f38216cb1d535ac2c984c2a0 /README.md
parentaa0ac38266f4427727f58368958cf563513ac3ae (diff)
Added readme for completed bot
I also had to remove the readme that had been hanging around from the sample bot.
Diffstat (limited to 'README.md')
-rw-r--r--README.md38
1 files changed, 0 insertions, 38 deletions
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.
-