-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.txtar
56 lines (48 loc) · 879 Bytes
/
example.txtar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
exec echo "Hello, world!"
stdout 'Hello, world!'
-- hello.bat --
echo "Hello, world!"
-- hello.diff --
--- a 2023-09-14 19:49:21
+++ b 2023-09-14 19:49:29
@@ -1 +1 @@
-Hello
+World!
-- hello.go --
package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}
-- hello.tmpl --
{{ "Hello, world!" }}
-- hello.html --
<h1>Hello, world!</h1>
-- hello.json --
{"message": "Hello, world!"}
-- hello.pl --
#!/usr/bin/perl
print "Hello, world!\n";
-- hello.txt --
Hello, world!
-- hello.ps1 --
Write-Host 'Hello, world!'
-- hello.proto --
syntax = "proto3";
message Message {
string hello = 1;
string world = 2;
}
-- hello.py --
#!/usr/bin/python3
print("Hello, world!")
-- hello.rb --
#!/usr/bin/ruby
print "Hello, world!"
-- hello.sh --
#!/bin/sh
echo "Hello, world!"
-- hello.toml --
message = "Hello, world!"
-- hello.yaml --
message: "Hello, world!"