mirror of
https://github.com/KarolS/millfork.git
synced 2025-08-20 20:27:54 +00:00
15 lines
235 B
Plaintext
15 lines
235 B
Plaintext
import test_fibonacci
|
|
import test_pstring
|
|
import test_string
|
|
|
|
void main() {
|
|
ensure_mixedcase()
|
|
|
|
test_fibonacci()
|
|
test_string()
|
|
test_pstring()
|
|
|
|
new_line()
|
|
putstrz("Total failures: "z)
|
|
putword(failure_count)
|
|
} |