Handbook
Glossary
translation-party ( text source target -- )
Vocabulary
google
.
translate
Inputs
text
an
object
source
an
object
target
an
object
Outputs
None
Definition
USING:
io
kernel
;
IN:
google.translate
::
translation-party
( text source target -- )
text
dup
print
[
dup
source target
translate
dup
print
target source
translate
dup
print
swap
dupd
=
not
]
loop
drop
;