1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-08-16 20:28:54 +00:00
millfork/examples/tests/main.mfk

29 lines
522 B
Plaintext
Raw Normal View History

2020-04-05 22:00:48 +00:00
import test_fibonacci
2020-04-05 22:44:20 +00:00
import test_pstring
import test_string
#if ENCCONV_SUPPORTED
2020-04-06 11:27:39 +00:00
import test_encconv
#endif
2020-06-03 21:13:17 +00:00
#if MILLFORK_VERSION >= 000317
import test_template<ignored1, 1>
import test_template<ignored1, 1>
import test_template<ignored2, 2>
#endif
2020-04-05 22:00:48 +00:00
void main() {
ensure_mixedcase()
2020-04-05 22:44:20 +00:00
2020-04-06 11:27:39 +00:00
// readkey()
2020-04-05 22:00:48 +00:00
test_fibonacci()
2020-04-05 22:44:20 +00:00
test_string()
test_pstring()
#if ENCCONV_SUPPORTED
2020-04-06 11:27:39 +00:00
test_encconv()
#endif
2020-04-05 22:44:20 +00:00
new_line()
2020-04-05 22:00:48 +00:00
putstrz("Total failures: "z)
putword(failure_count)
2020-04-06 11:27:39 +00:00
while true {} // don't exit
}