1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-12-25 06:29:17 +00:00
millfork/examples/tests/main.mfk

20 lines
324 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
2020-04-06 11:27:39 +00:00
import test_encconv
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()
2020-04-06 11:27:39 +00:00
test_encconv()
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
}