Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 14, 2019 23:04
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/1c29edec6015e78d9c2f5b964bbd7452 to your computer and use it in GitHub Desktop.
Save parzibyte/1c29edec6015e78d9c2f5b964bbd7452 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