mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-24 15:29:23 +00:00
20 lines
324 B
Plaintext
20 lines
324 B
Plaintext
import test_fibonacci
|
|
import test_pstring
|
|
import test_string
|
|
import test_encconv
|
|
|
|
void main() {
|
|
ensure_mixedcase()
|
|
|
|
// readkey()
|
|
test_fibonacci()
|
|
test_string()
|
|
test_pstring()
|
|
test_encconv()
|
|
|
|
new_line()
|
|
putstrz("Total failures: "z)
|
|
putword(failure_count)
|
|
while true {} // don't exit
|
|
}
|