Merge pull request #212 from dcondrey/master

Numerous obscure examples
This commit is contained in:
Mike Donaghy
2015-09-06 20:16:48 -04:00
24 changed files with 339 additions and 1 deletions

15
v/vi Normal file
View File

@@ -0,0 +1,15 @@
The following tab indented lines will cause a true vi with modelines
activated to infinitely loop puting "Hello World" in the buffer. Hit
to abort the loop and see the output. None of the vi clones
support modelines this powerful, and modelines are diabled by default.
Set the environment variable EXINIT to "set ml" to activate modelines.
vi: $ y a :
vi: $-1y b :
vi: @b :
put a |@b
Hello World
Whitespace is largely insignificant, but these must be the last five
lines in the file to work properly. Unless it is in "vi: ... :" or
"ex: ... :" format, any preceeding text will be ignored.

4
v/vms.vms Normal file
View File

@@ -0,0 +1,4 @@
$top:
$write sys$output "Hello world!"
$wait 00:00:10
$goto top