mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-11 04:48:00 +03:00
30 lines
744 B
Plaintext
30 lines
744 B
Plaintext
|
:: +dbug: tell /lib/dbug app to print some generic state
|
||
|
::
|
||
|
:: :app +dbug
|
||
|
:: the entire bowl
|
||
|
:: :app +dbug [direction] [specifics]
|
||
|
:: all in subs matching the parameters
|
||
|
:: direction: %incoming or %outgoing
|
||
|
:: specifics:
|
||
|
:: [%ship ~ship] subscriptions to/from this ship
|
||
|
:: [%path /path] subscriptions on path containing /path
|
||
|
:: [%wire /wire] subscriptions on wire containing /wire
|
||
|
:: [%term %name] subscriptions to app %name
|
||
|
::
|
||
|
/+ *dbug
|
||
|
::
|
||
|
:- %say
|
||
|
|= $: :: environment
|
||
|
::
|
||
|
*
|
||
|
:: inline arguments
|
||
|
::
|
||
|
args=?(~ [=what =about ~])
|
||
|
:: named arguments
|
||
|
::
|
||
|
~
|
||
|
==
|
||
|
:- %dbug
|
||
|
?~ args [%bowl *about]
|
||
|
[what.args about.args]
|