A modern object-oriented programming language implemented in Perl. https://tio.run/#sidef

trizen 15e78b0d7b Version 3.70 5 anni fa
bin 4844ae9947 Minor code clean-up. 5 anni fa
lib aabc967cc0 Version 3.70 5 anni fa
scripts 49366b2ade - Fixed the Sidef deparsing of subsets and structs defined inside a module and used outside. (https://github.com/trizen/sidef/issues/78) 5 anni fa
share fab6b1a9f2 modified: share/sidef/Memoize.sm 7 anni fa
t 205ca338f2 deleted: t/manifest.t 5 anni fa
utils 4844ae9947 Minor code clean-up. 5 anni fa
.gitignore 22b37ecb9c - Store the version info in bin/sidef `__DATA__` section. 5 anni fa
Build.PL 8b0d5cf864 - Auto-detect if `Math::Prime::Util` is available and use it in some Number methods for better performance. 5 anni fa
Changes 71ba3ae3cf Changed file permissions 8 anni fa
LICENSE 805fbc1e8d - Fixed the interactive help when Sidef is installed. 7 anni fa
MANIFEST 49366b2ade - Fixed the Sidef deparsing of subsets and structs defined inside a module and used outside. (https://github.com/trizen/sidef/issues/78) 5 anni fa
MANIFEST.SKIP 6facc73c6e - New implementation of the numerical system. 7 anni fa
META.json aabc967cc0 Version 3.70 5 anni fa
META.yml aabc967cc0 Version 3.70 5 anni fa
Makefile.PL 553eb043ff Use the integer limits from Math::GMPq. (POSIX is no longer needed) 6 anni fa
README.md d73d33dd93 Welcome 2019! 5 anni fa
TODO 858b6a457f - Added the Vector built-in class. 5 anni fa
_config.yml c28e099130 Set theme jekyll-theme-hacker 5 anni fa

README.md

The Sidef Programming Language

Sidef is a modern, high-level, general-purpose programming language, inspired by Ruby, Perl 6 and Julia.

            **   **         ****   *           *********   *********
          * * ** * *        ****   **          ** ** **    ** ** **
           **   **          ****   ***         *********   *  *  *
  **        **        **    ****   *  *        ******      ******
* * *     * * *     * * *   ****   ** **       ** **       ** **
 **        **        **     ****   ******      ******      *  *
       **   **              ****   *  *  *     *********   ***
     * * ** * *             ****   ** ** **    ** ** **    **
      **   **               ****   *********   *********   *
  • The main features of Sidef include:

    • object-oriented programming
    • functional programming
    • functional pattern matching
    • optional lazy evaluation
    • multiple dispatch
    • lexical scoping
    • lexical closures
    • keyword arguments
    • regular expressions
    • runtime metaprogramming
    • support for using Perl modules
    • optional dynamic type checking
    • big integers, rationals, floats and complex numbers

WWW

EXAMPLES

The Y combinator:

var y = ->(f) {->(g) {g(g)}(->(g) { f(->(*args) {g(g)(args...)})})}

var fac = ->(f) { ->(n) { n < 2 ? 1 : (n * f(n-1)) } }
say 10.of { |i| y(fac)(i) }     #=> [1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880]

var fib = ->(f) { ->(n) { n < 2 ? n : (f(n-2) + f(n-1)) } }
say 10.of { |i| y(fib)(i) }     #=> [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]

Approximation of the gamma function:

define ℯ = Num.e
define τ = Num.tau

func Γ(t, r=50) {
    t < r ? (__FUNC__(t + 1) / t)
           : (sqrt(τ*t) * pow(t/ℯ + 1/(12*ℯ*t), t) / t)
}

for i in (1..10) {
    say ("%.14f" % Γ(i/3))
}

ASCII generation of the Sierpinksi triangle:

func sierpinski_triangle(n) {
    var triangle = ['*']
    { |i|
        var sp = (' ' * 2**i)
        triangle = (triangle.map {|x| sp + x + sp} +
                    triangle.map {|x| x + ' ' + x})
    } * n
    triangle.join("\n")
}

say sierpinski_triangle(4)

Output:

               *
              * *
             *   *
            * * * *
           *       *
          * *     * *
         *   *   *   *
        * * * * * * * *
       *               *
      * *             * *
     *   *           *   *
    * * * *         * * * *
   *       *       *       *
  * *     * *     * *     * *
 *   *   *   *   *   *   *   *
* * * * * * * * * * * * * * * *

ASCII generation of the Mandelbrot set:

func mandelbrot(z, r=20) {
    var c = z
    r.times {
        z = (z*z + c)
        return true if (z.abs > 2)
    }
    return false
}

for y in (1 `downto` -1 `by` 0.05) {
    for x in (-2 `upto` 0.5 `by` 0.0315) {
        print(mandelbrot(Complex(x, y)) ? ' ' : '#')
    }
    print "\n"
}

Output:


                                                            #
                                                        #  ###  #
                                                        ########
                                                       #########
                                                         ######
                                             ##    ## ############  #
                                              ### ###################      #
                                              #############################
                                              ############################
                                          ################################
                                           ################################
                                         #################################### #
                          #     #        ###################################
                          ###########    ###################################
                           ###########   #####################################
                         ############## ####################################
                        ####################################################
                     ######################################################
#########################################################################
                     ######################################################
                        ####################################################
                         ############## ####################################
                           ###########   #####################################
                          ###########    ###################################
                          #     #        ###################################
                                         #################################### #
                                           ################################
                                          ################################
                                              ############################
                                              #############################
                                              ### ###################      #
                                             ##    ## ############  #
                                                         ######
                                                       #########
                                                        ########
                                                        #  ###  #
                                                            #

More examples

INTERACTIVE MODE

sidef

TRY IT ONLINE

AVAILABILITY

LICENSE AND COPYRIGHT

  • Copyright (C) 2013-2019 Daniel Șuteu, Ioana Fălcușan

This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License (2.0). You may obtain a copy of the full license at:

https://www.perlfoundation.org/artistic-license-20.html

Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license.

If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license.

This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder.

This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed.

Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.