Files
phpy/examples/range.php
T

5 lines
98 B
PHP

<?php
$py = PyCore::import('builtins');
$array = PyCore::scalar($py->range(3));
var_dump($array);