Skip to content

Commit d47f701

Browse files
authored
Merge pull request mouredev#7516 from manuelgomezg/main
Ejercicio 0 en php
2 parents af13665 + 86f311f commit d47f701

File tree

1 file changed

+16
-0
lines changed
  • Roadmap/00 - SINTAXIS, VARIABLES, TIPOS DE DATOS Y HOLA MUNDO/php

1 file changed

+16
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// https://www.php.net/manual/es/index.php
2+
// comentario de una linea
3+
# Esto es un comentario al estilo de consola de una sola línea
4+
<!-- comentario
5+
de
6+
multiples
7+
lineas -->
8+
<?php
9+
$name = "PHP"; // string
10+
$quantity = 33; // integer
11+
$price = 9.99; // float
12+
$paymentStatus = true; // boll
13+
$startDate = null; // Null
14+
// echo 'hola $name ';
15+
echo "Hola {$name} ";
16+
?>

0 commit comments

Comments
 (0)