The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lang::HL HL programming language.

SYNOPSIS

  $> hlc <directoryName>
  $> hlp <directoryName>

DESCRIPTION

HL is a programming language.

EXAMPLE

        class NotePad {
            function notePad() {
                var text = "NotePad Example";
                class.text = text;
            }
        }

        class Main {
            parent(NotePad);

            function main() {
                class.notePad();
                var text = class.NotePad.text;
                print(text, "\n");
            }
        }

AUTHOR

Rajkumar Reddy

COPYRIGHT AND LICENSE

Copyright (C) 2022 by Rajkumar Reddy. All rights reserved.