Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created January 21, 2019 08: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 fitomad/4234d6cd2c82c65b2780b110c86591e4 to your computer and use it in GitHub Desktop.
Save fitomad/4234d6cd2c82c65b2780b110c86591e4 to your computer and use it in GitHub Desktop.
let saludo = #"Hola a todos, sí, a "todos""#
print(saludo)
// Hola a todos, sí, a "todos"
let nombre = "Adolfo"
let saludoDos = #"Hola a todos, a \(nombre) también"#
print(saludoDos)
// Hola a todos, a \(nombre) también
let saludoTres = #"Hola a todos, a \#(nombre) también"#
print(saludoTres)
// Hola a todos, a Adolfo también
let almohadilla = #"Además de interporal con \() "también" puedes usar el símbolo #"#
print(almohadilla)
// Además de interporal con \() "también" puedes usar el símbolo #
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment