forked from squinky/intrapology-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.ink
47 lines (28 loc) · 871 Bytes
/
script.ink
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
VAR topic = "nothing"
->Start
==Start
Apple: Hi, I'm the first video caller!
Banana: Hi, I'm the second video caller!
->MultipleChoice
==MultipleChoice
//choices start appearing from here onward
@What should be our next topic of discussion?
Apple: Here is some multiple-choice voting!
Banana: What should be our next topic of discussion?
+ Apple: The weather!
~topic = "the weather"
+ Apple: Cats!
~topic = "cats"
+ Apple: Late-stage capitalism!
~topic = "late-stage capitalism"
//choices stop appearing after this point
- ->WriteIn
==WriteIn
//rant box appears from here onward
@Write any thoughts you have about {topic} here.
Apple: Now it's time for some fun with write-in options!
Banana: The audience is going to type stuff in and you are going to read it all!
Apple: That's right!
Apple: Firebase-read
Banana: That's all, folks!
->END