This commit is contained in:
Andrew Kelley 2015-11-24 23:56:35 -07:00
parent 09f68c7c33
commit 4fe366dfa6
2 changed files with 0 additions and 11 deletions

View File

@ -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"

View File

@ -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.