time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

repl.txt (353B)


      1 
      2 {{alias}}( str )
      3     Lowercases the first character of a `string`.
      4 
      5     Parameters
      6     ----------
      7     str: string
      8         Input string.
      9 
     10     Returns
     11     -------
     12     out: string
     13         Uncapitalized string.
     14 
     15     Examples
     16     --------
     17     > var out = {{alias}}( 'Beep' )
     18     'beep'
     19     > out = {{alias}}( 'bOOp' )
     20     'bOOp'
     21 
     22     See Also
     23     --------
     24