forked from ThomasMertes/seed7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calc7.sd7
105 lines (99 loc) · 4.35 KB
/
calc7.sd7
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
(********************************************************************)
(* *)
(* calc7.sd7 Calculator *)
(* Copyright (C) 1995, 2004, 2013, 2014 Thomas Mertes *)
(* *)
(* This program is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU General Public License as *)
(* published by the Free Software Foundation; either version 2 of *)
(* the License, or (at your option) any later version. *)
(* *)
(* This program is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *)
(* GNU General Public License for more details. *)
(* *)
(* You should have received a copy of the GNU General Public *)
(* License along with this program; if not, write to the *)
(* Free Software Foundation, Inc., 51 Franklin Street, *)
(* Fifth Floor, Boston, MA 02110-1301, USA. *)
(* *)
(********************************************************************)
$ include "seed7_05.s7i";
include "progs.s7i";
include "keybd.s7i";
include "console.s7i";
include "editline.s7i";
const proc: main is func
local
var string: command is "";
var program: progExpr is program.EMPTY;
begin
OUT := STD_CONSOLE;
IN := openEditLine(KEYBOARD, OUT);
writeln("Calc7 - Seed7 calculator");
writeln("Copyright (C) 1995, 2004, 2013, 2014 Thomas Mertes");
writeln("This is free software; see the source for copying conditions. There is NO");
writeln("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.");
writeln("Calc7 is written in the Seed7 programming language");
writeln("Homepage: http://seed7.sourceforge.net");
writeln("Write an expression to be calculated or quit or exit to leave the program.");
writeln;
write("calculate? ");
readln(command);
while command not in {"quit", "exit"} do
if command <> "" then
progExpr := parseStri("\
\$ include \"seed7_05.s7i\";\n\
\include \"console.s7i\";\n\
\include \"float.s7i\";\n\
\include \"math.s7i\";\n\
\include \"rational.s7i\";\n\
\include \"complex.s7i\";\n\
\include \"mixarith.s7i\";\n\
\include \"bigint.s7i\";\n\
\include \"bigrat.s7i\";\n\
\include \"time.s7i\";\n\
\include \"duration.s7i\";\n\
\include \"bytedata.s7i\";\n\
\include \"leb128.s7i\";\n\
\include \"unicode.s7i\";\n\
\include \"encoding.s7i\";\n\
\include \"bin32.s7i\";\n\
\include \"bin64.s7i\";\n\
\include \"msgdigest.s7i\";\n\
\include \"osfiles.s7i\";\n\
\include \"getf.s7i\";\n\
\include \"gethttp.s7i\";\n\
\include \"gethttps.s7i\";\n\
\include \"ftp.s7i\";\n\
\include \"keybd.s7i\";\n\
\include \"draw.s7i\";\n\
\\n\
\const proc: main is func\n\
\ begin\n\
\ OUT := STD_CONSOLE;\n\
\ block\n\
\ writeln(" & command & ");\n\
\ exception\n\
\ catch MEMORY_ERROR: writeln(\"MEMORY_ERROR\");\n\
\ catch NUMERIC_ERROR: writeln(\"NUMERIC_ERROR\");\n\
\ catch OVERFLOW_ERROR: writeln(\"OVERFLOW_ERROR\");\n\
\ catch RANGE_ERROR: writeln(\"RANGE_ERROR\");\n\
\ catch INDEX_ERROR: writeln(\"INDEX_ERROR\");\n\
\ catch FILE_ERROR: writeln(\"FILE_ERROR\");\n\
\ end block;\n\
\ end func;\n\
\");
if progExpr <> program.EMPTY then
if errorCount(progExpr) = 0 then
execute(progExpr);
else
writeln("*** " <& errorCount(progExpr) <& " errors found");
end if;
end if;
end if;
write("calculate? ");
readln(command);
end while;
end func;