Questions tagged [beef]

Beef is a compiled programming language. It was created alongside an IDE that is intended to support Beef-specific features. Use this tag for discussing the Beef programming language or the Beef IDE.

Beef is a compiled programming language. Its syntax and the design of its core libraries are heavily influenced by C#. Beef features support for custom allocators and fine control over stack memory.

Beef was created alongside an IDE ("Beef IDE") intended to support Beef-specific features.

17 questions
0
votes
1 answer

How can I prevent objects created in a loop from being released at the end of that iteration of the loop

If I'm creating an object and I want it to only last for the current code block, after which it will be destroyed (or at least marked for destruction) automatically, I can use the scope keyword: using System; class Program { public void…
Ruzihm
  • 19,749
  • 5
  • 36
  • 48
0
votes
1 answer

How can I use an extension to add interface conformance to a type that is outside my control?

On the extensions page of the Beef documentation, it says this: Extensions can be useful for adding interface conformance to types that are outside your control (ie: system types or types defined in another library). Unfortunately, it doesn't…
Ruzihm
  • 19,749
  • 5
  • 36
  • 48
1
2