comparison src/luan/modules/Boot.luan @ 1470:580ee513a4b7

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 14 Apr 2020 17:12:06 -0600
parents 56fb5cd8228d
children f04bfbb08721
comparison
equal deleted inserted replaced
1469:21f5edab1fbf 1470:580ee513a4b7
73 73
74 local function new_LuanIO(io) 74 local function new_LuanIO(io)
75 local this = new_LuanIn(io) 75 local this = new_LuanIn(io)
76 this.write = io.write 76 this.write = io.write
77 this.write_text = io.write_text 77 this.write_text = io.write_text
78 this.write_binary = io.write_binary
78 79
79 function this.text_writer() 80 function this.text_writer()
80 return new_writer( io.text_writer() ) 81 return new_writer( io.text_writer() )
81 end 82 end
82 83