This commit is contained in:
C. Guy Yarvin 2014-07-28 16:02:28 -07:00
parent d145dd069a
commit a8f5877fc4
4 changed files with 28 additions and 1 deletions

View File

@ -357,7 +357,7 @@
::
++ noun :: convert from %noun
|= src=*
^+ `_..grab`+>+
^+ +>+
+>+(don (down src))
--
::

View File

@ -13,3 +13,4 @@
[/text/html (met 3 htm) htm]
--
--

15
main/pro/zong/core.hoon Normal file
View File

@ -0,0 +1,15 @@
::
:::: /hoon/core/zong/pro
::
/? 314
/- zong
|_ zog=zong
::
++ grab :: convert from
|%
++ noun :: convert from %noun
|= src=*
^+ +>+
+>+(zog (zong src))
--
--

11
main/str/zong/gate.hoon Normal file
View File

@ -0,0 +1,11 @@
=< zong
|%
++ mess :: message
$% [%do p=@t] :: act
[%exp p=@t q=tank] :: code
[%say p=@t] :: speak
==
++ zong
$% [%mess p=@da q=ship r=mess]
==
--