diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/examples/x.lua | 12 | ||||
-rw-r--r-- | test/examples/x.pl | 8 | ||||
-rw-r--r-- | test/examples/x.rb | 10 |
3 files changed, 15 insertions, 15 deletions
diff --git a/test/examples/x.lua b/test/examples/x.lua index 7172c85d2..b7879619f 100644 --- a/test/examples/x.lua +++ b/test/examples/x.lua @@ -1,6 +1,6 @@ ---[[ Block
-comment ]]
-function first()
- -- Comment
- func(SCI_ANNOTATIONSETTEXT, 'a', 0, "LINE1")
-end
+--[[ Block +comment ]] +function first() + -- Comment + func(SCI_ANNOTATIONSETTEXT, 'a', 0, "LINE1") +end diff --git a/test/examples/x.pl b/test/examples/x.pl index ba89f62a7..19288f2c9 100644 --- a/test/examples/x.pl +++ b/test/examples/x.pl @@ -1,5 +1,5 @@ -use strict;
-while ( $r ) {
- printf ( "Example text \n" );
- sleep 1;
+use strict; +while ( $r ) { + printf ( "Example text \n" ); + sleep 1; }
\ No newline at end of file diff --git a/test/examples/x.rb b/test/examples/x.rb index 234a6406b..d1bb0f0a8 100644 --- a/test/examples/x.rb +++ b/test/examples/x.rb @@ -1,6 +1,6 @@ -class Demo
- def test # A test
- i = 1
- puts "Example"
- end
+class Demo + def test # A test + i = 1 + puts "Example" + end end
\ No newline at end of file |