From 861134542a1712647aa8e26c594afce30c9bbc23 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Wed, 30 Jan 2019 14:25:30 -0500 Subject: [PATCH] First commit --- .gitignore | 44 +++ .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/encodings.xml | 4 + .idea/inspectionProfiles/Project_Default.xml | 10 + .idea/jsLinters/eslint.xml | 6 + .idea/misc.xml | 43 +++ .idea/modules.xml | 8 + .idea/rust.iml | 75 ++++ .idea/vcs.xml | 18 + .idea/workspace.xml | 363 +++++++++++++++++++ branches/.gitignore | 2 + branches/Cargo.toml | 7 + branches/src/main.rs | 10 + ctof/.gitignore | 2 + ctof/Cargo.toml | 7 + ctof/src/main.rs | 22 ++ enums/.gitignore | 2 + enums/Cargo.toml | 7 + enums/src/main.rs | 3 + ftoc/.gitignore | 2 + ftoc/Cargo.toml | 7 + ftoc/src/main.rs | 22 ++ functions/.gitignore | 2 + functions/Cargo.toml | 7 + functions/src/main.rs | 10 + guessing_game/.gitignore | 2 + guessing_game/Cargo.toml | 8 + guessing_game/src/main.rs | 34 ++ loops/.gitignore | 2 + loops/Cargo.toml | 7 + loops/src/main.rs | 59 +++ rectangles/.gitignore | 2 + rectangles/Cargo.toml | 7 + rectangles/src/main.rs | 44 +++ references/.gitignore | 2 + references/Cargo.toml | 7 + references/src/main.rs | 23 ++ scope/.gitignore | 2 + scope/Cargo.toml | 7 + scope/src/main.rs | 53 +++ slices/.gitignore | 2 + slices/Cargo.toml | 7 + slices/src/main.rs | 44 +++ structs/.gitignore | 2 + structs/Cargo.toml | 7 + structs/src/main.rs | 39 ++ variables/.gitignore | 2 + variables/Cargo.toml | 7 + variables/scope/Cargo.toml | 7 + variables/scope/src/main.rs | 3 + variables/src/main.rs | 9 + 51 files changed, 1076 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/jsLinters/eslint.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/rust.iml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 branches/.gitignore create mode 100644 branches/Cargo.toml create mode 100644 branches/src/main.rs create mode 100644 ctof/.gitignore create mode 100644 ctof/Cargo.toml create mode 100644 ctof/src/main.rs create mode 100644 enums/.gitignore create mode 100644 enums/Cargo.toml create mode 100644 enums/src/main.rs create mode 100644 ftoc/.gitignore create mode 100644 ftoc/Cargo.toml create mode 100644 ftoc/src/main.rs create mode 100644 functions/.gitignore create mode 100644 functions/Cargo.toml create mode 100644 functions/src/main.rs create mode 100644 guessing_game/.gitignore create mode 100644 guessing_game/Cargo.toml create mode 100644 guessing_game/src/main.rs create mode 100644 loops/.gitignore create mode 100644 loops/Cargo.toml create mode 100644 loops/src/main.rs create mode 100644 rectangles/.gitignore create mode 100644 rectangles/Cargo.toml create mode 100644 rectangles/src/main.rs create mode 100644 references/.gitignore create mode 100644 references/Cargo.toml create mode 100644 references/src/main.rs create mode 100644 scope/.gitignore create mode 100644 scope/Cargo.toml create mode 100644 scope/src/main.rs create mode 100644 slices/.gitignore create mode 100644 slices/Cargo.toml create mode 100644 slices/src/main.rs create mode 100644 structs/.gitignore create mode 100644 structs/Cargo.toml create mode 100644 structs/src/main.rs create mode 100644 variables/.gitignore create mode 100644 variables/Cargo.toml create mode 100644 variables/scope/Cargo.toml create mode 100644 variables/scope/src/main.rs create mode 100644 variables/src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..354cc76 --- /dev/null +++ b/.gitignore @@ -0,0 +1,44 @@ +# Created by https://www.gitignore.io/api/osx,rust +# Edit at https://www.gitignore.io/?templates=osx,rust + +### OSX ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### Rust ### +# Generated by Cargo +# will have compiled files and executables +/target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# End of https://www.gitignore.io/api/osx,rust diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..5878325 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..15a15b2 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..0846e3d --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/.idea/jsLinters/eslint.xml b/.idea/jsLinters/eslint.xml new file mode 100644 index 0000000..1779634 --- /dev/null +++ b/.idea/jsLinters/eslint.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..07de02a --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + composer.json + /usr/local/bin/composer + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..8e518a5 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/rust.iml b/.idea/rust.iml new file mode 100644 index 0000000..58d5604 --- /dev/null +++ b/.idea/rust.iml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..d2ab9f2 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..da0632f --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,363 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ftoc + + + f_to_c + + + + + + + + + false + + false + false + + + + + + + + + + + + + + + + + + + + + +