Commit 4fe366dfa6
Changed files (2)
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"
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.