initial commit; version 22.5.12042

This commit is contained in:
2022-12-12 23:28:25 -05:00
commit af1b03d79f
17653 changed files with 22692970 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<?php
$arr = array ('name' => "Chris",
'value' => 10000,
'in_ca' => TRUE
);
$arr['taxed_value'] = $arr['value'] - ($arr['value'] * 0.4);
echo json_encode($arr);

View File

@ -0,0 +1 @@
{"name":"Chris","value":10000,"in_ca":true,"taxed_value":6000}

View File

@ -0,0 +1,5 @@
Hello {{name}}
You have just won ${{value}}!
{{#in_ca}}
Well, ${{ taxed_value }}, after taxes.
{{/in_ca}}

View File

@ -0,0 +1,3 @@
Hello Chris
You have just won $10000!
Well, $6000, after taxes.