[Solved] Parse INI in Perl (list format)

You haven’t told us the expected format for the data or shown any existing code, so it’s impossible to know what you’re looking for, but this should get you at least 90% of the way there: use strict; use warnings; use Data::Dumper; my %config; my $group = ”; while (<DATA>) { chomp; next unless /\S/; … Read more

[Solved] Why the weird language? [closed]

Because DLLs are compiled. You’re looking at binary data (machine code instructions, plus various bits of data) with a text editor. While some programs are distributed as source code (bash scripts, JavaScript/HTML/CSS Windows Universal Apps, several others), many others (probably “most” on Windows) are distributed as compiled machine code. solved Why the weird language? [closed]