1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00
Beef Programming Language
Find a file
Hunter Bridges 81b909c541 Fix misc bugs w/ IDE build in folders with a space
- Add quotes to bin/msbuild.bat paths
- Tweak PostBuildCmds in Debugger64 and IDEHelper
- Tweak Debug paths in IDE project to be relative to Workspace
- Modify AppendWithOptionalQuotes to not add more quotes if source string already in quotes
- Modify quoting behavior in build shell command construction
2020-10-12 15:49:25 -07:00
BeefBoot Removing old unused method 2020-08-25 07:50:03 -07:00
BeefBuild Version bump 2020-10-05 14:26:09 -07:00
BeefLibs Debug Break,SafeBreak,IsDebuggerPresent. [NoDebug] 2020-10-10 07:08:30 -07:00
BeefLink Changing target platform 2019-09-27 16:59:13 -07:00
BeefRT Adding quotes to paths to fix various issues in C++ builds 2020-10-11 12:48:55 -07:00
BeefTools Theme support fixed 2020-10-07 08:00:31 -07:00
BeefySysLib Adding quotes to paths to fix various issues in C++ builds 2020-10-11 12:48:55 -07:00
bin Fix misc bugs w/ IDE build in folders with a space 2020-10-12 15:49:25 -07:00
builds Win32 debugging fixes, more work on custom compile commands 2019-08-29 14:19:07 -07:00
Debugger32 Fixed build paths, added comparison warnings, other misc fixes 2019-10-05 10:26:26 -07:00
Debugger64 Fix misc bugs w/ IDE build in folders with a space 2020-10-12 15:49:25 -07:00
extern Interop fixes and tests, fixing xplat struct passing issues 2020-06-10 07:12:07 -07:00
IDE Fix misc bugs w/ IDE build in folders with a space 2020-10-12 15:49:25 -07:00
IDEHelper Fix misc bugs w/ IDE build in folders with a space 2020-10-12 15:49:25 -07:00
.gitignore IDE file recovery 2020-09-18 05:30:21 -07:00
Beef.sln Fixed some tooltips, added Link Dependencies, more int-ness 2019-12-21 05:48:44 -08:00
CMakeLists.txt macOS fixes 2020-05-21 13:30:30 -07:00
LICENSE.TXT Added linebreaks to license 2019-11-26 13:11:29 -08:00
LICENSES.TXT Adding third-party licenses 2019-11-25 06:48:00 -08:00
qthelper.py Initial checkin 2019-08-23 11:56:54 -07:00
README.md Update README.md 2020-05-25 07:22:35 -07:00
readme.txt Added license and readme 2019-09-10 11:26:32 -07:00

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 syntax and many semantics are most directly derived from C#, while attempting to retain the C ideals of bare-metal explicitness and lack of runtime surprises, with some "modern" niceties inspired by languages such as Rust, Swift, and Go. See the Language Guide for more details.

Beef's primary design goal is to provide a fluid and pleasurable development experience for high-performance real-time applications such as video games, with low-level features that make it suitable for engine development, combined with high-level ergonomics suitable for game code development.

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.

Memory management in Beef is manual, and includes first-class support for custom allocators. Care has been taken to reduce the burden of manual memory management with language ergonomics and runtime safeties Beef can detect memory leaks in real-time, and offers 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 for maximum performance.

The Beef IDE supports productivity features such as autocomplete, fixits, reformatting, refactoring tools, type inspection, runtime code compilation (hot code swapping), 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.

Binaries and Documentation

Official website (beeflang.org)
Documentation
Stable Releases
Nightly Windows Release

IDE Screenshots

Screenshot