Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
src,
raylib-python-cffi,
writers,
}:
let
src = raylib-python-cffi.src;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

More a curiosity question than anything, but would something like inherit (raylib-python-cffi) src; work or does it cause something weird to happen that I am unaware of?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, inherit (foo) bar and bar = foo.bar are exactly the same thing. I usually prefer the inherit style, but I try to avoid nitpicking such trivial details when I can restrain myself.

Copy link
Member

@Sigmanificient Sigmanificient Jan 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The idea is not to nitpick on this, just to know if there is some notable behavior! I do prefer the inherit style too, but this will go when the opportunity comes. I prefer to challenge my perception, in case i could be wrong :)

writeTest =
name: path:
writers.writePython3Bin name {
Expand Down
Loading