浏览代码

Update README.md

Brian Fiete 5 年之前
父节点
当前提交
c4533d2354
共有 1 个文件被更改,包括 4 次插入6 次删除
  1. 4 6
      README.md

+ 4 - 6
README.md

@@ -1,11 +1,9 @@
 # Beef Programming Language
 
-Beef is an open source performance-oriented compiled programming language which has been built hand-in-hand with its IDE environment.
-
-The Beef Development Tools include an IDE with a general-purpose debugger capable of debugging native applications written in any language.
-
-The IDE supports productivity features such as autocomplete, fixits, reformatting, refactoring tools, type inspection, hot compilation, and a built-in profiler.
+Beef is an open source performance-oriented compiled programming language which has been built hand-in-hand with its IDE environment. The syntax and many semantics are mostly direcly derived from C#, while attempting to retain the C ideals of baremetal explicitness and lack of runtime surprises, with some "modern" niceties inspired by languages such as Rust, Swift, and Go. See the [Language Guide](https://www.beeflang.org/docs/language-guide/) for more details.
 
 Beef allows for safely mixing different optimization levels on a per-type or per-method level, allowing for performance-critical code to be executed at maximum speed without affecting debuggability of the rest of the application.
 
-Beef can detect memory leaks in real-time. As with most safety features in Beef, this can be turned off in Release builds for performance-critical applications.
+Beef can detect memory leaks in real-time, as well as guaranteed protection against use-after-free and double-deletion errors. As with most safety features in Beef, these memory safeties can be turned off in release builds.
+
+The Beef IDE supports productivity features such as autocomplete, fixits, reformatting, refactoring tools, type inspection, hot compilation, and a built-in profiler. The IDE's general-purpose debugger is capable of debugging native applications written in any language, and is intended to be a fully-featured standalone debugger even for pure C/C++ developers who want an alternative to Visual Studio debugging.