PreviousUpNext

15.4.120  src/app/makelib/test/test.pkg

## test.pkg

# Compiled by:
#     src/app/makelib/makelib.sublib

# This module is just for playing around with experimental code;
# it has no fixed functionality for production use.

package test {

    fun double i
        =
        i + i;

    fun square x
        =
        x * x;
};


## Code by Jeff Prothero: Copyright (c) 2010-2015,
## released per terms of SMLNJ-COPYRIGHT.


Comments and suggestions to: bugs@mythryl.org

PreviousUpNext