mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-27 12:30:04 +08:00
11 lines
291 B
Plaintext
11 lines
291 B
Plaintext
|
$user_name = 'Fred';
|
||
|
echo "<tt>Hello <strong>$user_name</tt></strong>";
|
||
|
|
||
|
// XHP: Typechecked, well-formed, and secure
|
||
|
$user_name = 'Andrew';
|
||
|
$xhp = <tt>Hello <strong>{$user_name}</strong></tt>;
|
||
|
// ^ tag
|
||
|
// ^ tag
|
||
|
// ^ string
|
||
|
echo await $xhp->toStringAsync();
|