2023-11-06 00:08:07 +01:00
|
|
|
%import textio
|
2023-11-10 22:27:07 +01:00
|
|
|
%import string
|
2023-11-09 22:32:20 +01:00
|
|
|
%zeropage basicsafe
|
2023-10-14 07:18:37 +02:00
|
|
|
|
2023-10-15 22:44:34 +02:00
|
|
|
main {
|
2023-11-06 21:55:58 +01:00
|
|
|
sub start() {
|
2023-11-10 22:27:07 +01:00
|
|
|
str name = "irmen????????????"
|
|
|
|
name[5] = 0
|
2023-11-09 22:32:20 +01:00
|
|
|
|
2023-11-10 22:27:07 +01:00
|
|
|
txt.print(name)
|
2023-11-09 22:32:20 +01:00
|
|
|
txt.nl()
|
2023-11-10 22:27:07 +01:00
|
|
|
ubyte length = string.append(name, ".prg")
|
2023-11-09 22:32:20 +01:00
|
|
|
|
2023-11-10 22:27:07 +01:00
|
|
|
txt.print_ub(length)
|
|
|
|
txt.chrout('[')
|
|
|
|
for cx16.r0L in 0 to length-1 {
|
|
|
|
txt.chrout(name[cx16.r0L])
|
|
|
|
}
|
|
|
|
txt.chrout(']')
|
2023-10-04 22:32:13 +02:00
|
|
|
}
|
2023-10-03 22:54:28 +02:00
|
|
|
}
|