1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-08 17:15:12 +00:00
QB64-PE/tests/compile_tests/console_only/libz.bas

19 lines
289 B
QBasic
Raw Normal View History

$CONSOLE:ONLY
_DEST _CONSOLE
PRINT HexString$(_DEFLATE$("this is a test"))
SYSTEM
Function HexString$(s As String)
Dim ret As String
For i = 1 To Len(s)
Dim h As String
h = Hex$(Asc(s, i))
If Len(h) = 1 Then h = "0" + h
ret = ret + h
Next
HexString$ = ret
End Function