-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path554.html
More file actions
139 lines (139 loc) · 5.91 KB
/
Copy path554.html
File metadata and controls
139 lines (139 loc) · 5.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SmallBASIC | CREAL</title>
<meta name="description" content="Convert x to 64b real number. Meaningless. Used for compatibility.">
<link rel="canonical" href="554">
<link rel="keywords" href="CREAL (x)">
<link rel="stylesheet" href="/css/style.css">
<link rel="icon" type="image/png" href="/images/sb-desktop-32x32.png">
<script src="/clipboard.js"></script>
</head>
<body>
<div class="wrapAll clearfix">
<div class="sidebar">
<div class="logo">
<a href="/"><img src='/images/sb-desktop-128x128.png' alt="logo"></a>
</div>
<div class="navigation">
<h4>SmallBASIC</h4>
<ul>
<li><a href="/">Main page</a></li>
<li><a href="/pages/download.html">Download</a></li>
<li><a href="/pages/reference.html">Language reference</a></li>
<li><a href="/pages/samples.html">Code library</a></li>
</ul>
<hr class="menuSeparator"/>
<ul>
<li><a href="/pages/articles.html">Articles</a></li>
<li><a href="/pages/community.html">Community</a></li>
<li><a href="/pages/changelog.html">Changelog</a></li>
<li><a href="/pages/screenshots.html">Screenshots</a></li>
<li><a href="/pages/links.html">Links</a></li>
</ul>
</div>
</div>
<div class="mainsection">
<div class="tabs clearfix">
<div class="tabsLeft">
<ul>
<li><a href="#" class="active">Article</a></li>
<li><a href="https://www.syntaxbomb.com/smallbasic">Discuss</a></li>
</ul>
</div>
<div id="simpleSearch">
<form action="https://github.com/smallbasic/smallbasic.github.io/search"
target="_github" accept-charset="UTF-8" method="get" style="display:inline">
<div id="submitSearch">
<button type="submit"> </button>
<input type="hidden" class="js-site-search-type-field" name="type">
<input type="hidden" name="utf8" value="✓">
<input type="hidden" name="l" value="Visual Basic">
<input type="text" name="q" placeholder="Search" id="searchInput">
</div>
</form>
</div>
<div class="tabsRight">
<ul>
<li><a target="_github" href="https://github.com/smallbasic/smallbasic.github.io/blob/master/_build/reference/554-data-creal.markdown">View source</a></li>
<li><a target="_github" href="https://github.com/smallbasic/smallbasic.github.io/commits/master/_build/reference/554-data-creal.markdown">View history</a></li>
</ul>
</div>
</div>
<div class="article">
<h1>CREAL</h1>
<blockquote>CREAL (x)</blockquote>
<div class="siteSub">
<p>
<a href="/">Home</a> >
<a href="/pages/reference.html">Reference</a> >
<a href="/pages/data.html">Data</a>
</p>
</div>
</blockquote>
<p>Convert x to 64b real number. Meaningless. Used for compatibility.</p>
<div class="lavenderBox">
<div class="header">Data</div>
<div class="linklist">
<a href="/reference/581.html">APPEND </a>
<a href="/reference/1432.html">ARRAY </a>
<a href="/reference/552.html">CDBL </a>
<a href="/reference/553.html">CINT </a>
<a href="/reference/554.html"><strong>CREAL</strong> </a>
<a href="/reference/569.html">DATA </a>
<a href="/reference/542.html">DELETE </a>
<a href="/reference/570.html">DIM </a>
<a href="/reference/543.html">EMPTY </a>
<a href="/reference/571.html">ERASE </a>
<a href="/reference/544.html">INSERT </a>
<a href="/reference/555.html">ISARRAY </a>
<a href="/reference/556.html">ISDIR </a>
<a href="/reference/557.html">ISFILE </a>
<a href="/reference/558.html">ISLINK </a>
<a href="/reference/1430.html">ISMAP </a>
<a href="/reference/559.html">ISNUMBER </a>
<a href="/reference/560.html">ISSTRING </a>
<a href="/reference/561.html">LBOUND </a>
<a href="/reference/562.html">LEN </a>
<a href="/reference/546.html">READ </a>
<a href="/reference/547.html">REDIM </a>
<a href="/reference/572.html">RESTORE </a>
<a href="/reference/548.html">SEARCH </a>
<a href="/reference/549.html">SORT </a>
<a href="/reference/550.html">SWAP </a>
<a href="/reference/567.html">UBOUND </a>
</div>
<div class="subtitle">
If there is insufficient information on this page and you wish learn more about CREAL,
please send an email to smallbasic@gmail.com. You can help to improve information about
CREAL by submitting a <a href="https://github.com/smallbasic/smallbasic.github.io/pulls">pull request</a>,
click View Source for details. Note, an offline language reference text file is also available - see the Download section.
</div>
</div>
<div class="categories">
<a href="/pages/console.html">Console </a>
<a href="/pages/data.html">Data </a>
<a href="/pages/date.html">Date </a>
<a href="/pages/file.html">File </a>
<a href="/pages/graphics.html">Graphics </a>
<a href="/pages/language.html">Language </a>
<a href="/pages/math.html">Math </a>
<a href="/pages/string.html">String </a>
<a href="/pages/system.html">System </a>
</div>
</div>
<div class="pagefooter">
This page was last edited on Sat, 17 Mar 2018 11:54:15 +1000
|
<a href="https://en.wikipedia.org/wiki/Markdown" target="_blank" rel="nofollow">Markdown</a>
processed with
<a href="https://pandoc.org/MANUAL.html#pandocs-markdown" target="_blank" rel="nofollow">pandoc 2.5</a>
| Template by <a href="http://html5-templates.com/" target="_blank" rel="nofollow">HTML5 Templates</a>
</div>
</div>
</div>
</body>
</html>