-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrmq.typ
More file actions
49 lines (31 loc) · 809 Bytes
/
Copy pathrmq.typ
File metadata and controls
49 lines (31 loc) · 809 Bytes
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
#import "@preview/codly:1.3.0": *
#import "@preview/codly-languages:0.1.1": *
#show: codly-init.with()
#set page(
columns: 2,
flipped: true,
margin: (top: 2pt, bottom: 2pt, left: 2pt, right: 2pt)
)
#set columns(gutter: 12pt)
#codly(languages: codly-languages)
== go.mod
#let text = read("go.mod")
#raw(text, block: true, lang: "go")
== person.proto
#let text = read("person.proto")
#raw(text, block: true, lang: "protobuf")
== common.go
#let text = read("common/common.go")
#raw(text, block: true, lang: "go")
#pagebreak()
== recv.go
#let text = read("recv/recv.go")
#raw(text, block: true, lang: "go")
#pagebreak()
== send.go
#let text = read("send/send.go")
#raw(text, block: true, lang: "go")
#pagebreak()
== Makefile
#let text = read("Makefile")
#raw(text, block: true, lang: "make")