diff options
Diffstat (limited to 'doc/de/weechat_scripting.de.asciidoc')
-rw-r--r-- | doc/de/weechat_scripting.de.asciidoc | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/de/weechat_scripting.de.asciidoc b/doc/de/weechat_scripting.de.asciidoc index 765385136..7026bdc27 100644 --- a/doc/de/weechat_scripting.de.asciidoc +++ b/doc/de/weechat_scripting.de.asciidoc @@ -119,7 +119,7 @@ Argumente: Beispielskripten, für jede Sprache: -* python: +* Python: [source,python] ---- @@ -129,7 +129,7 @@ weechat.register("test_python", "FlashCode", "1.0", "GPL3", "Test Skript", "", " weechat.prnt("", "Hallo, von einem python Skript!") ---- -* perl: +* Perl: [source,perl] ---- @@ -137,7 +137,7 @@ weechat::register("test_perl", "FlashCode", "1.0", "GPL3", "Test Skript", "", "" weechat::print("", "Hallo, von einem perl Skript!"); ---- -* ruby: +* Ruby: [source,ruby] ---- @@ -148,7 +148,7 @@ def weechat_init end ---- -* lua: +* Lua: [source,lua] ---- @@ -156,7 +156,7 @@ weechat.register("test_lua", "FlashCode", "1.0", "GPL3", "Test Skript", "", "") weechat.print("", "Hallo, von einem lua Skript!") ---- -* tcl: +* Tcl: [source,tcl] ---- @@ -164,7 +164,7 @@ weechat::register "test_tcl" "FlashCode" "1.0" "GPL3" "Test Skript" "" "" weechat::print "" "Hallo, von einem tcl Skript!" ---- -* guile (scheme): +* Guile (scheme): [source,lisp] ---- @@ -172,7 +172,7 @@ weechat::print "" "Hallo, von einem tcl Skript!" (weechat:print "" "Hallo, von einem scheme Skript!") ---- -* javascript: +* Javascript: [source,javascript] ---- @@ -298,7 +298,7 @@ nicht um einen Pointer). callback Beispiele, für jede Skriptsprache: -* python: +* Python: [source,python] ---- @@ -309,7 +309,7 @@ def timer_cb(data, remaining_calls): weechat.hook_timer(1000, 0, 1, "timer_cb", "test") ---- -* perl: +* Perl: [source,perl] ---- @@ -322,7 +322,7 @@ sub timer_cb { weechat::hook_timer(1000, 0, 1, "timer_cb", "test"); ---- -* ruby: +* Ruby: [source,ruby] ---- @@ -334,7 +334,7 @@ end Weechat.hook_timer(1000, 0, 1, "timer_cb", "test"); ---- -* lua: +* Lua: [source,lua] ---- @@ -346,7 +346,7 @@ end weechat.hook_timer(1000, 0, 1, "timer_cb", "test") ---- -* tcl: +* Tcl: [source,tcl] ---- @@ -358,7 +358,7 @@ proc timer_cb { data remaining_calls } { weechat::hook_timer 1000 0 1 timer_cb test ---- -* guile (scheme): +* Guile (scheme): [source,lisp] ---- @@ -370,7 +370,7 @@ weechat::hook_timer 1000 0 1 timer_cb test (weechat:hook_timer 1000 0 1 "timer_cb" "test") ---- -* javascript: +* Javascript: [source,javascript] ---- |