Skip to content

Instantly share code, notes, and snippets.

@HiroNakamura
Last active October 26, 2025 01:52
Show Gist options
  • Select an option

  • Save HiroNakamura/50432bceb1e1afef06dc6bd1248dc4eb to your computer and use it in GitHub Desktop.

Select an option

Save HiroNakamura/50432bceb1e1afef06dc6bd1248dc4eb to your computer and use it in GitHub Desktop.
Odin en ejemplos
package main
import "../saludo_project"
main :: proc(){
get_saludo()
nombre: string = "Fernando."
get_saludo_nombre(nombre)
}
package main
import "core:fmt"
get_saludo::proc(){
fmt.println("\t ======= SALUDO DESDE ODIN ========")
}
get_saludo_nombre::proc(n: string){
fmt.println("\t Hola, ", n)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment