I already think the list of import statements on the top of the pyjamas.d file is too long. I think named imports are a generally better practice since you can see what symbols were imported from where, easily. Plus it prevents weird name conflicts from happening (such as File in std.file and File in std.stdio).
I already think the list of import statements on the top of the
pyjamas.d
file is too long. I think named imports are a generally better practice since you can see what symbols were imported from where, easily. Plus it prevents weird name conflicts from happening (such asFile
instd.file
andFile
instd.stdio
).