Mercurial Hosting > luan
annotate core/src/luan/modules/Binary.luan @ 610:b4f3dbe1c6e3
add Rpc and change Hosting to use Rpc
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 11 Dec 2015 00:13:13 -0700 |
parents | 6c00b8a59240 |
children |
rev | line source |
---|---|
321
7f7708e8fdd4
remove import statement
fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
parents:
320
diff
changeset
|
1 java() |
7f7708e8fdd4
remove import statement
fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
parents:
320
diff
changeset
|
2 local BinaryLuan = require "java:luan.modules.BinaryLuan" |
302
2f8938fc518c
fix modules Binary and Html
fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
parents:
diff
changeset
|
3 |
567 | 4 |
503 | 5 local M = {} |
6 | |
567 | 7 M.binary = BinaryLuan.binary |
503 | 8 M.byte = BinaryLuan.byte_ |
9 M.to_string = BinaryLuan.to_string | |
10 | |
11 return M |