1234567891011121314151617181920212223 |
- include "primitives.alh"
- include "jit.alh"
- Void function test_main()
- Void function main():
- String config
- Integer start_time
- Integer end_time
- config = input()
- if (config == "interpreter"):
- set_jit_enabled(False)
- start_time = time()
- test_main()
- end_time = time()
- output(end_time - start_time)
-
- while (True):
- output(input())
-
- return!
|