Erlang - galleggiante

Il metodo converte un numero in un valore float.

Sintassi

float(X)

Parametri

X - Un valore numerico.

Valore di ritorno

Il valore restituito è il valore float del numero.

Per esempio

-module(helloworld). 
-export([start/0]). 

start() ->
   Num = float(3), 
   io:fwrite("~f",[Num]).

Produzione

Quando eseguiamo il programma sopra, otterremo il seguente risultato.

3.000000