1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 21:57:38 +03:00
mal/impls/gnu-smalltalk/readline.st

21 lines
557 B
Smalltalk
Raw Permalink Normal View History

2017-06-29 01:59:18 +03:00
DLD addLibrary: 'libreadline'.
DLD addLibrary: 'libhistory'.
Object subclass: ReadLine [
ReadLine class >> readLine: prompt [
<cCall: 'readline' returning: #stringOut args: #(#string)>
]
ReadLine class >> addHistory: item [
<cCall: 'add_history' returning: #void args: #(#string)>
]
ReadLine class >> readHistory: filePath [
<cCall: 'read_history' returning: #int args: #(#string)>
]
ReadLine class >> writeHistory: filePath [
<cCall: 'write_history' returning: #int args: #(#string)>
]
]