Instrucciones Basicas

  • November 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Instrucciones Basicas as PDF for free.

More details

  • Words: 161
  • Pages: 6
INSTRUCCIONES BÁSICAS INSTRUCCIONES BÁSICAS DE HASKELL

La forma de introducir nuevos tipos es a través de las INSTRUCCIONES:

Type: Permite renombrar tipos (no crea nuevos tipos)

Data: Se crean nuevos tipos de datos mediante el uso de constructores. INSTRUCCIONES BÁSICAS DE HASKELL

La

declaración type simplemente hace un renombramiento, pero no introduce nuevos tipos de datos.

Ejemplo: Transformar las coordenadas de un punto 2D. transPunto:: (Int ,Int) -> (Int,Int) transPunto (x,y) = ....

Se puede renombrar la tupla (Int,Int) con un solo identificador, por ejemplo: Coordenadas. INSTRUCCIONES BÁSICAS DE HASKELL

En Haskell type Coordenadas = (Int, Int) transPunto:: Coordenadas -> Coordenadas transPunto (x, y) = (y,x)

INSTRUCCIONES BÁSICAS DE HASKELL

La instrucción data permite crear nuevos tipos de datos. Ejemplo: data PALO = Oros|Copas|Espadas|Bastos data FIGURA = As|Dos|Tres|Cuatro|Cinco| Seis|Siete|Sota|Caballo|Rey Con estas instrucciones se define en Haskell un nuevo tipo de datos que identifica a los palos y figuras de la baraja española.

INSTRUCCIONES BÁSICAS DE HASKELL

GRACIAS INSTRUCCIONES BÁSICAS DE HASKELL

Related Documents

Instrucciones Basicas
November 2019 21
Instrucciones
June 2020 20
Instrucciones
May 2020 31
Instrucciones
October 2019 62
Instrucciones
April 2020 29