mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 05:40:06 +08:00
11 lines
151 B
PHP
11 lines
151 B
PHP
<?php
|
|
namespace NS1;
|
|
|
|
define('ZAP', 42);
|
|
|
|
namespace NS1\SUBNS;
|
|
define('ZAPSUB', 6 * 7);
|
|
|
|
namespace NS1\SUBNS\SUBSUBNS;
|
|
define('ZAPSUBSUB', 2 * 3 * 7);
|