mirror of
https://github.com/pragma-/pbot.git
synced 2025-02-05 09:04:32 +01:00
![Pragmatic Software](/assets/img/avatar_default.png)
Also renamed c11.pm to _c_base.pm and set the C languages to inherit from _c_base.pm instead of c11.pm.
10 lines
83 B
Perl
Executable File
10 lines
83 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use warnings;
|
|
use strict;
|
|
|
|
package c89;
|
|
use parent '_c_base';
|
|
|
|
1;
|