Beef icon indicating copy to clipboard operation
Beef copied to clipboard

Beef Programming Language

Results 279 Beef issues
Sort by recently updated
recently updated
newest added

Date/Time support is mostly directly lifted from Microsoft's mscorlib and is a lot of timezone stuff is not portable. I wouldn't mind simplifying or reducing functionality if it makes sense.

corlib

* Fetch objects instead of pull - pull fails if run in existing directory due to branch checkout. * Always run the configure / make steps rather than assuming directory...

While trying to build Beef for macOS from source I ran into a Segfault with BeefBoot. Info: - macOS 12.3.1 + XCode 13.3.1 - cmake version 3.23.0 - Python 2.7.18...

Would it be possible to support dot notation for extensions? Like so: ``` extension Foo.Bar { ... } ``` Ideally, Foo could be a namespace, struct, or class. Name resolution...

While trying to fix an IDE crash that I encountered (https://github.com/beefytech/Beef/pull/1429), I found out that the cause of the issue is because Beef currently allows an unassigned variable to be...

1. For some reason it shows an error of ambiguous reference 2. The previous error disappears from the IDE if you edit something in the code, and appears again if...

No autocomplete inside these brackets: ``` public function void a(); ``` Autocomplete works inside these brackets: ``` public function void() d; ```

Title says it all: arrays and lists are both indexable via ranges (Thanks for that by the way.) except constant sized arrays.

Beef has the concept of `SkipCall` which requires you to wrap it in `#if` which can muck up the code. Where .NET has the `Conditional` attribute that takes an argument...