php/lang/var.php

15 lines
112 B
PHP

<?php
$var = "String var";
enum Enumeration
{
case One;
case Two;
case Tree;
}
$array = [];
?>