![]() |
![]()
| ![]() |
![]()
NAMELanguage::Expr::Manual::Syntax - Description of the Language::Expr language VERSIONThis document describes version 0.29 of Language::Expr::Manual::Syntax (from Perl distribution Language-Expr), released on 2016-07-03. OVERVIEWLanguage::Expr language is very simple. It has just enough features to support mathematical/logical/string operations, arrays, hashes, variables, and function calls. Language::Expr is (intentionally) not Turing-complete (lacks assignment and loops). Language::Expr is a lot like Perl. Differences from Perl, if any, are given after each section. It should be trivial to implement an interpreter or code generator from the parser. In fact, Language::Expr is meant to be easily convertible to Perl, PHP, and Javascript (among others like Python and Ruby). LITERALSUndefined valueundef Booleantrue false Differences from Perl: Perl doesn't support native booleans, but there are modules like boolean which practically make Perl behaves like it does. Number1 -2.3 inf nan 0x1f # hexadecimal, = 31 in decimal 0o17 # octal, = 15 in decimal 0b100 # binary, = 4 in decimal Differences from Perl: octal literals in Expr are written using the less error-prone 0o123 syntax, which is also adopted by Python. StringSingle-quoted strings, e.g. 'single quoted'. Supported escape sequences: \' literal single quote \\ literal backslash Double-quoted strings, e.g. "double quoted". Supported escape sequences: \' literal single quote \" literal double quote \\ literal backslash \$ prevent variable interpolation \t tab \n newline \r linefeed \f formfeed \b backspace \a bell \e escape \0 or \03 or \033 octal char \x7 or \x7B hex char \x{263a} wide hex char Double-quoted strings will also interpolate variables, e.g.: "I have $num apples" "This is Foo::Bar version ${perl:/Foo/Bar/VERSION}" Differences from Perl: Perl supports a few other escape sequences, but they are not commonly found in other scripting languages (e.g.: named Unicode character or the \l, \L, et al), so they are not included. Array[] [1, 2, "str"] Differences from Perl: dangling comma at the end is not allowed in Expr. Hash{} {a => 1, "b c" => 2+3} Differences from Perl: in Expr you must always use "=>" to separate key and value, not comma. Dangling comma at the end is not allowed. OPERATORSMany operators are taken from Perl, along with their precedence levels and associativity, but here are the differences:
Below is list of supported operators, ordered from lowest precedence, along with their associativity. left => left || // ^^ right ?: left && left | ^ left & left == != <=> cmp eq ne < > <= >= ge gt le lt nonassoc <=> cmp left << >> left + - . left * / % x right ! ~ unary+ unary- right ** left subscript (hash[s], array[i]) left term (variable, str/num literals, (paren), func()) Pairleft => Logical or, defined-or, logical xorleft || // ^^ Ternary operatorright ?: Logical andleft && Bitwise or, bitwise xorleft | ^ Bitwise andleft & Comparison operatorsleft == != <=> cmp eq ne < > <= >= ge gt le lt Tri-valued comparisonnonassoc <=> cmp Bitwise shift left & rightleft << >> Numeric addition, subtraction, string concatenationleft + - . Numeric multiplication, division, modulus, string repetitionleft * / % x Logical not, bitwise not, unary plus, unary minus (numeric negation)right ! ~ unary+ unary- Numeric powerright ** Hash and array subscriptleft subscript (hash[s], array[i]) Termleft term (variable, str/num literals, (paren), func()) VARIABLESThere are two syntax for variables: $alphanum123 (including $_) $package::separated::var and: ${anything goes except closing curly brace} Differences from Perl: In Expr there is just $scalar, no @array or %hash or others. There are no special variables with funny names ($., $$, etc), but if they are enclosed with curly braces they are allowed (e.g. ${.}, ${name/contains/slashes}). In fact, the curly braces syntax allows the compiler/interpreter a greater freedom of defining the namespace scheme aside from the Perl-like double-colon syntax, e.g.: # Unix-path-like ${../foo} ${/foo/bar/baz} # volume:path (or URL-like) ${schema:/foo/bar/baz} ${data:../../baz} FUNCTIONSExamples: rand() length("foo") Differences from Perl: parentheses are required in Expr. The language define just a few functions: map({ EXPR }, ARRAY) -> RESULT_ARRAYThis is similar to Perl's map() (but notice the required parentheses), it will form a new array composed from the result of EXPR. EXPR will be evaluated for each element of ARRAY (stored in $_). The original value of $_ will be restored after EXPR completes. grep({ EXPR }, ARRAY) -> RESULT_ARRAYThis is similar to Perl's grep() (but notice the required parentheses), it will form a new array composed from the elements of ARRAY when EXPR evaluates to true (like in Perl, empty string '', the number 0, boolean "false", "undef" are considered false). EXPR will be evaluated for each element of ARRAY (stored in $_). The original value of $_ will be restored after EXPR completes. usort({ EXPR }, ARRAY) -> RESULT_ARRAYThis is similar to Perl's sort() (but notice the required parentheses), it will return the ARRAY sorted using comparison in EXPR. EXPR will be evaluated for each element of ARRAY ($a and $b will be set with two values to be compared). The original value of $a and $b will be restored after EXPR completes. HOMEPAGEPlease visit the project's homepage at <https://metacpan.org/release/Language-Expr>. SOURCESource repository is at <https://github.com/sharyanto/perl-Language-Expr>. BUGSPlease report any bugs or feature requests on the bugtracker website <https://rt.cpan.org/Public/Dist/Display.html?Name=Language-Expr> When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. AUTHORperlancar <perlancar@cpan.org> COPYRIGHT AND LICENSEThis software is copyright (c) 2016 by perlancar@cpan.org. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|