prog8/compiler/res/prog8lib/virtual/prog8_lib.p8
2022-03-20 15:06:29 +01:00

12 lines
236 B
Lua

; Internal library routines - always included by the compiler
;
; Written by Irmen de Jong (irmen@razorvine.net) - license: GNU GPL 3.0
prog8_lib {
sub pattern_match(str string, str pattern) -> ubyte {
; TODO
return 0
}
}