Jump to content

Arithmetic evaluation: Difference between revisions

no edit summary
No edit summary
Line 4,863:
result: 16406262
</pre>
 
=={{header|Picat}}==
<lang Picat>
main =>
print("Enter an expression: "),
Str = read_line(),
Exp = parse_term(Str),
Res is Exp,
printf("Result = %w\n", Res).
</lang>
 
=={{header|PicoLisp}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.