test generation

This commit is contained in:
Your Name
2023-06-13 16:54:49 +03:00
parent 7fcf646c98
commit 1416f14e73

View File

@@ -2,6 +2,11 @@
function generation_kuri(){
echo index_kuri();
ob_start();
index_kuri();
$result = ob_get_contents();
ob_end_flush();
echo $result;
}