/
githubmirror
/
nmap
Обзор
Документация
Войти
/
githubmirror
/
nmap
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ncat/test/toupper.lua
14 строк
209 B
d33tah
fix the Lua tests.
18 июл 2013, 01:41
18 июл 2013, 01:41
713641f
Код
Авторство
О чём код?
--Emulates the RFC 862 echo service, behaving like Unix's "cat" tool. while true do data = io.stdin:read(1) if data == nil then break end io.write(data:upper()) io.flush() end