Mastering Perl for Bioinformatics [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Mastering Perl for Bioinformatics [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید










A.9 Operators


Operators are
functions
that represent basic operations on values: addition, subtraction,
etc. They are frequently used and are core parts of the Perl
programming language. They are really just functions that take
arguments. For instance, + is the operator that
adds two numbers, like so:

3 + 4;

Operators typically have one, two, or three operands; in the example
just given, there are two operands 3 and
4.

Operators can appear before, between, or after their operands. For
example, the plus operator + appears between its
operands.


/ 156