diff options
Diffstat (limited to 'emacs.d/snippets/text-mode/scala-mode/actor')
-rw-r--r-- | emacs.d/snippets/text-mode/scala-mode/actor | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/emacs.d/snippets/text-mode/scala-mode/actor b/emacs.d/snippets/text-mode/scala-mode/actor new file mode 100644 index 0000000..d38a183 --- /dev/null +++ b/emacs.d/snippets/text-mode/scala-mode/actor @@ -0,0 +1,10 @@ +#Author : Jonas Bonèr <jonas@jonasboner.com> +#name : val a = actor { ..} +# -- +val a = actor { + loop { + react { + $0 + } + } +}
\ No newline at end of file |