-
Notifications
You must be signed in to change notification settings - Fork 2
/
test1.c
50 lines (41 loc) · 1.34 KB
/
test1.c
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
/*
* This program exists purely to allow 'make distcheck' to check
* that an installation will allow a simple SEE program to
* be compiled and run.
*/
#include <see/see.h>
/* Simple example of using the interpreter */
int
main()
{
struct SEE_interpreter interp_storage, *interp;
struct SEE_input *input;
SEE_try_context_t try_ctxt;
struct SEE_value result;
char *program_text = "Math.sqrt(3 + 4 * 7) + 9";
/* Initialise an interpreter */
SEE_interpreter_init(&interp_storage);
interp = &interp_storage;
/* Create an input stream that provides program text */
input = SEE_input_utf8(interp, program_text);
/* Establish an exception context */
SEE_TRY(interp, try_ctxt) {
/* Call the program evaluator */
SEE_Global_eval(interp, input, &result);
/* Print the result */
if (SEE_VALUE_GET_TYPE(&result) == SEE_NUMBER)
printf("The answer is %f\n", result.u.number);
else {
printf("Unexpected answer\n");
exit(1);
}
}
/* Finally: */
SEE_INPUT_CLOSE(input);
/* Catch any exceptions */
if (SEE_CAUGHT(try_ctxt)) {
printf("Unexpected exception\n");
exit(1);
}
exit(0);
}