aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2015-11-24 23:56:35 -0700
committerAndrew Kelley <superjoe30@gmail.com>2015-11-24 23:56:35 -0700
commit4fe366dfa6e58d7e0c159a5e864fec56499cc888 (patch)
tree6413fd80176454aa2ab191c420432ed125a7e3b7
parent09f68c7c339075183c67c56149620c6970b6842a (diff)
downloadzig-4fe366dfa6e58d7e0c159a5e864fec56499cc888.tar.gz
zig-4fe366dfa6e58d7e0c159a5e864fec56499cc888.zip
cleanup
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md9
2 files changed, 0 insertions, 11 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 88f22d13de..d6a3e282c3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -20,8 +20,6 @@ include_directories(
${CMAKE_BINARY_DIR}
)
-set(GRAMMAR_TXT "${CMAKE_BINARY_DIR}/simple.txt")
-
set(ZIG_SOURCES
"${CMAKE_SOURCE_DIR}/src/buffer.cpp"
"${CMAKE_SOURCE_DIR}/src/error.cpp"
diff --git a/README.md b/README.md
index 1b5d0839d8..20cdb47809 100644
--- a/README.md
+++ b/README.md
@@ -4,15 +4,6 @@ An experiment in writing a low-level programming language with the intent to
replace C. Zig intends to be a small language, yet powerful enough to write
readable, safe, optimal, and concise code to solve any computing problem.
-## Design Principles
-
- * Never compromise power or performance.
- * Keep the language small and easy to understand. C programmers should pretty
- much be able to understand Zig source code without learning anything about
- Zig.
- * Interoperability with C is crucial. Using C libraries should not require
- "Zig bindings".
-
## Goals
* Ability to run arbitrary code at compile time and generate code.