summaryrefslogtreecommitdiffstats
path: root/test/04-function-isna.txt
blob: 148c64986160f4a987dd8f9803310b6c0fc0ad25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%mode init
B1=NA()
B2=B1
B3=ISNA(B1)
B4=ISNA(B2)
B5=ISNA(B3)
B6=ISNA(1)
B7=ISNA("str")
B8=ISNA(NA())
%calc
%mode result
B1=#N/A
B2=#N/A
B3=true
B4=true
B5=false
B6=false
B7=false
B8=true
%check