Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 11, 2020 16:53
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/874c3cb1f19be7865b7c99979f79c2da to your computer and use it in GitHub Desktop.
Save parzibyte/874c3cb1f19be7865b7c99979f79c2da to your computer and use it in GitHub Desktop.
creditos = """
Programado por Luis Cabrera Benito
____ _____ _ _ _
| _ \ | __ \ (_) | | |
| |_) |_ _ | |__) |_ _ _ __ _____| |__ _ _| |_ ___
| _ <| | | | | ___/ _` | '__|_ / | '_ \| | | | __/ _ \\
| |_) | |_| | | | | (_| | | / /| | |_) | |_| | || __/
|____/ \__, | |_| \__,_|_| /___|_|_.__/ \__, |\__\___|
__/ | __/ |
|___/ |___/
Blog: https://parzibyte.me/blog
Ayuda: https://parzibyte.me/blog/contrataciones-ayuda/
Contacto: https://parzibyte.me/blog/contacto/
"""
comentario_comun = {
'inicio': '/*',
'fin': '*/',
}
comentarios = {
'txt': {
'inicio': '',
'fin': '',
},
'ts': comentario_comun,
'js': comentario_comun,
'ino': comentario_comun,
'java': comentario_comun,
'php': {
'inicio': "<?php\n/*",
'fin': '*/ ?>',
},
'py': {
'inicio': '"""',
'fin': '"""',
},
'html': {
'inicio': '<!--',
'fin': '-->',
},
'go': comentario_comun,
'c': comentario_comun,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment