PHP code example of walnut / lang
1. Go to this page and download the library: Download walnut/lang library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
walnut / lang example snippets
use Walnut\Lang\Implementation\Program\EntryPoint\Cli\CliEntryPointFactory;
$rootDir = __DIR__; //or something different
$sourceRoot = $rootDir . '/nut-src';
$packages = ['core' => $rootDir . '/vendor/walnut/lang/core-nut-lib'];
$result = new CliEntryPointFactory($sourceRoot, $packages)
->entryPoint->call('start', 'arg1', 'arg2'); //Call the main function of the `start` module
echo "Result: $result", PHP_EOL;