Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 14, 2019 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/dd00c308010700375575cbfc226d188c to your computer and use it in GitHub Desktop.
Save parzibyte/dd00c308010700375575cbfc226d188c to your computer and use it in GitHub Desktop.
<?php
// Funciones "ficticias" para demostrar
function obtenerNombre(){
return "parzibyte";
}
function obtenerEdad(){
return 21;
}
printf("Hola %s tu edad es %d", obtenerNombre(), obtenerEdad());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment