-
Notifications
You must be signed in to change notification settings - Fork 0
/
Function_application.fold
301 lines (215 loc) · 6.41 KB
/
Function_application.fold
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
(*
Function application
*)
IO.write(String.join(map(show, args), with: sep) ++ terminator, file: IO.stdout)
** Math-style
IO.write(String.join(map(show, args), with: sep) ++ terminator, file: IO.stdout)
** Ruby Style, with commas
IO.write (String.join (map show, args), with: sep) ++ terminator, file: IO.stdout
** Haskell-style
IO.write ((String.join (map show args) with: sep) ++ terminator) file: IO.stdout
** S-expressions
(IO.write ((String.join (map show args) with: sep) ++ terminator) file: IO.stdout)
** Fold
IO.write (String.join (map show args) with: sep ++ terminator) file: IO.stdout
IO.write: (String.join (map show args) with: sep) ++ terminator file: IO.stdout
IO.write: (String.join (map show args), with: sep) ++ terminator, file: IO.stdout
"""
Prints the values to a stream, or to Sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
"""
function print args... (sep :: String = " ") (break : String = "\n") -> Unit:
IO.write: (String.join (map show args) with: sep) + break
file: IO.stdout
end
print "Hello" " " "World" "!" to: open("file.out")
=> f : x
=> f to: x
-- ^
-- |
-- `- named function application
--
-- the named arguments are used to verify the next available function label.
-- // --
-- ## Named blocks
--
-- If the named parameter is the last element on the line, the colon is omitted
-- and an implicit block is created.
-- ### Use Cases
-- Case #1
f l1: e1
f l1
e1
end
-- Case #2
f l1: e1 l2: e2
f l1: e1 l2
e2
end
-- Case #3
f l1: e1 l2: e2 l3: e3
f l1: e1 l2: e2 l3
e3
end
f l1: e1 l2
e2
l3
e3
end
f l1
e1
l2
e2
l3
e3
end
-- ### Types
f :: l1: Code -> l2: Code
f l1: e1 l2: e2
-- ## Standard control structures
names = ["Ana", "Bob", "Cavin", "Dylan"]
names =
if ("Bill" in names) then
Log.info "Bill found, kill Bill!"
List.remove names "Bill"
else
List.prepend names "Bill"
end
names = ["Ana", "Bob", "Cavin", "Dylan"]
names =
if ("Bill" in names)
Log.info "Bill found, kill Bill!"
List.remove names "Bill"
else
List.prepend names "Bill"
end
-- // --
function send_msg (from sender::String) (to receiver::String) -> Unit {
...
}
-> send_msg
:: from: String -> to: String -> Unit
-> send_msg from: "Steve"
:: to: String -> Unit
-> send_msg from: "Steve" to: "Alan"
:: Unit
-> (send_msg from: "Steve") to: "Alan"
-> print 2 + 2
== (print 2) + 2
-> print : 2 + 2
== (print 2) + 2
-> from :: Code (from: a -> b) -> Code b
-> f a: x b: y c: z
== (((f a: x) b: y) c: z)
-> f : x : y : z
== (((f x) y) z)
-> f $ g $ h $ x
== f (g (h x))
-- `: is a very low priority operator.
-- Original Haskell version
forM_ [1..10] $ \i -> do
l <- readLine
replicateM_ i $ print l
for [1..10] : i => {
l <- input!
replicate i : print l
}
for [1..10] : i => {
for [5..20] : j => {
l <- input!
replicate i : print l
}
}
for (i <- [1..10],
j <- [5..20]) {
l <- input!
replicate i : print l
}
let squareOfEvens =
numbers
|> Seq.filter IsEven
|> Seq.map Square
Cluster cluster = Cluster.builder()
.addContactPoint("ds5.movves.io")
.withCredentials("movves", "may0n3s3")
.withCompression(ProtocolOptions.Compression.SNAPPY)
.withPoolingOptions(new PoolingOptions()
.setCoreConnectionsPerHost(HostDistance.REMOTE,12)
.setMaxConnectionsPerHost(HostDistance.REMOTE,20))
.build();
(-> Cluster.builder()
(addContactPoint "ds5.movves.io")
(withCredentials "movves" "may0n3s3")
(withCompression ProtocolOptions.Compression.SNAPPY)
(withPoolingOptions (-> PoolingOptions/new
(setCoreConnectionsPerHost HostDistance.REMOTE 12)
(setMaxConnectionsPerHost HostDistance.REMOTE 20))
build)
cluster = Cluster.builder =>
(add_contact_point "ds5.movves.io")
(with_credentials "movves" "may0n3s3")
(with_compression ProtocolOptions.Compression.SNAPPY)
(with_pooling_options (PoolingOptions.new =>
(set_core_connections_per_host HostDistance.REMOTE 12)
(set_max_connections_per_host HostDistance.REMOTE 20)))
build
cluster = Cluster.create
contact_point: "ds5.movves.io"
credentials: ("movves", "may0n3s3")
compression: ProtocolOptions.Compression.SNAPPY
pooling_options: (PoolingOptions.create
core_connections_per_host: (HostDistance.REMOTE, 12)
max_connections_per_host: (HostDistance.REMOTE, 20))
cluster = Cluster.builder
|> add_contact_point "ds5.movves.io"
|> with_credentials "movves" "may0n3s3"
|> with_compression ProtocolOptions.Compression.SNAPPY
|> with_pooling_options (PoolingOptions.new
|> set_core_connections_per_host HostDistance.REMOTE 12
|> set_max_connections_per_host(HostDistance.REMOTE 20)
|> build
cluster = Cluster.builder
>- add_contact_point "ds5.movves.io"
>- with_credentials "movves" "may0n3s3"
>- with_compression ProtocolOptions.Compression.SNAPPY
>- with_pooling_options (PoolingOptions.new
>- set_core_connections_per_host HostDistance.REMOTE 12
>- set_max_connections_per_host(HostDistance.REMOTE 20)
>- build
cluster = Cluster.builder
>> add_contact_point "ds5.movves.io"
>> with_credentials "movves" "may0n3s3"
>> with_compression ProtocolOptions.Compression.SNAPPY
>> with_pooling_options (PoolingOptions.new
>> set_core_connections_per_host HostDistance.REMOTE 12
>> set_max_connections_per_host(HostDistance.REMOTE 20)
>> build
cluster = Cluster.builder
=> add_contact_point "ds5.movves.io"
=> with_credentials "movves" "may0n3s3"
=> with_compression ProtocolOptions.Compression.SNAPPY
=> with_pooling_options (PoolingOptions.new
=> set_core_connections_per_host HostDistance.REMOTE 12
=> set_max_connections_per_host(HostDistance.REMOTE 20)
=> build
-- • --
(* Look no error about optionals being erased *)
let greeting (prefix p = "!") (name n) (age a) => p ++ "hello " ++ n;
let msg = greeting (:name "Joe", :age 29);
let msg = greeting (:prefix "!!", :name "Joe", :age 29);
-- • --
hello name (lang = `en) = do
greeting =
case lang
| `en ->
print "using english"
"Hello"
| `pt -> "Olá"
| `ru -> "Привет"
end
print "$greeting, $(String.capitalize name)!"
end
-- * --