RogueMacro
RogueMacro
Possibly linked to #904
What do you think about a package registry and do you have something in mind for naming? Do you see this coming to Beef sometime in the future?
I don't know if you planned to do this, but maybe when you add packages to your workspace they could be under a separate folder along with the workspace. Then...
I was thinking that a project would be a project you created yourself. Like a directory can have multiple projects, but the external/BeefLibs packages/projects you add would be packages. I...
You can step through it from the main menu bar, but also use F10(Step over), F11(step into), shift-F11(step out), F9(breakpoint)
@marsej You mean Stack Trace? It's a window for that
It might not be exactly what you are looking for, but it's an interesting idea: https://www.beeflang.org/docs/language-guide/comptime/ See last example of LogAttribute
No, not generic. I meant using a `Type` object. Like `typeof(T)`
@bfiete You could close this as dynamic casting it provided by Variants. ```cs BaseItem item; Item itemImpl = scope .(); Variant variant = Variant.Create(typeof(BaseItem), &itemImpl); item = variant.Get(); // or...
Implemented in the current version of Beef.