diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-08-21 00:05:03 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-08-21 00:05:03 +0200 |
| commit | 39269cc68a32f6e1a7524b00da36a1fe4cc7fb8b (patch) | |
| tree | 9558cd6107d60e22127faeddbdeac5031ee2fdbe /testsuite/compilable/double_literals.elna | |
| parent | 4f77ad5d019618893c59a0f8d5bfa6b98e50a3be (diff) | |
| download | elna-39269cc68a32f6e1a7524b00da36a1fe4cc7fb8b.tar.gz | |
Implement Single and Double floats
Diffstat (limited to 'testsuite/compilable/double_literals.elna')
| -rw-r--r-- | testsuite/compilable/double_literals.elna | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/compilable/double_literals.elna b/testsuite/compilable/double_literals.elna new file mode 100644 index 0000000..9e8a73d --- /dev/null +++ b/testsuite/compilable/double_literals.elna @@ -0,0 +1,9 @@ +proc f() +var + x: const Double := 3.14 + y: const Double := 1e10 + z: const Double := 4.567e8 + t: const Double := 2.5E-3 +return + +end. |
