English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
This method checks if the number is a floating-point value.
Is_float(X)
X-A numeric value.
If the number specified as a parameter is a floating-point type, the return value is true, otherwise false.
-module(helloworld). -export([start/0]). start() -> Num = 3.00, io:fwrite("~w",[is_float(Num)]).
true