root/stdlib/sys.crl

Revision 6ee09c3569acd94dbc293973755507f3c558b54d, 196 bytes (checked in by redbrain <redbrain@…>, 2 years ago)

refactors for handling the standard library and external modules

  • Property mode set to 100644
Line 
1from __builtin_ import *
2
3defun range( start, stop, stepping )
4{
5        return ( __builtin_.range( start, stop,
6                                   stepping ) );
7}
8
9defun abs( value )
10{
11        return ( __builtin.abs( value ) );
12}
Note: See TracBrowser for help on using the browser.