The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

SPVM::Document::Functions - SPVM Standard Functions (BETA before 1.0)

SPVM Standard Functions

FUNCTIONS

print

Print string to stdout.

  sub print : void ($string : String);

warn

Print string with file name and line number to stderr. line break is added to end of string.

  sub warn : void ($string : String);

time

Get epoch time.

  sub time : long ();