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

NAME

Telugu::Keyword - Perl extension to provide Telugu keywords

SYNOPSIS

    use Telugu::Keyword;
    use utf8;
    binmode STDOUT, ":encoding(UTF-8)";

    ధర్మం డోర్స్($ఎన్ని) {
         నా @డోర్స్;
         కొఱకు $పాస్ (1 .. $ఎన్ని) {
               కొఱకు $ఎ (1 .. $ఎన్ని) {
                     ఐతే (0 == $ఎ % $పాస్) {
                         $డోర్స్[$ఎ] = !$డోర్స్[$ఎ];
                     }
               }
         }
         కొఱకు $ఎ (1 .. $ఎన్ని) {
                ముద్రణ "డోర్ $ఎ ", $డోర్స్[$ఎ] ? "తెర్చుంది" : "మూసుంది";
         }
    }

    డోర్స్(100);

DESCRIPTION

This module provides keywords to write perl program in Telugu script

KEYWORDS

ప్రింటు

   ప్రింటు keyword is equivalent to print
   ప్రింటు "మీ తెలుగు సందేశం";

ముద్రణ

   ముద్రణ keyword is equivalent to print. It adds \n char at the end of the string.

నా

   నా keyword is equivalent to my

ధర్మం

   ధర్మం is equivalent to sub.
   ధర్మం takes parameters, instead of writing them inside sub.

   ex:
      ధర్మం డోర్స్($ఎన్ని) {
        ... # code here
      }

      is equivalent to

      sub డోర్స్ {
        my ($ఎన్ని) = @_;
        ... #code here
      }

ఇవ్వు

   ఇవ్వు keyword is equivalent to return statement in function

వరకు

   వరకు is equivalent to while loop

తరువాత

   తరువాత keyword is equivalent to next keyword. It is used in while loop

కొఱకు

   కొఱకు is equivalent to for loop. No need to write my inforont of the loop variable
   eq:
      కొఱకు $పాస్ (1 .. $ఎన్ని) {
        ... #code here
      }

      is equivalent to

      for my $పాస్ (1 .. $ఎన్ని) {
        ... #code here
      }

ఐతే

   ఐతే is equivalent to if condition

BUGS

None reported. Please email me if you find any.

AUTHOR

Rajkumar Reddy, <mesg.raj@outlook.com>

COPYRIGHT AND LICENSE

Copyright (C) 2019 by bird

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.26.1 or, at your option, any later version of Perl 5 you may have available.