Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
953b19a27d3ce2a18b6451dd7d8a53b5fe20e9ef
/
.
/
examples
/
clean
/
Max_array.icl
blob: 1acd55beb00283643a3c0c60ff19afa0b40d87fe [
file
] [
log
] [
blame
] [
raw
]
module
example
import
StdEnv
maxArray
::
[
Real
]
[
Real
]
->
[
Real
]
maxArray list1 list2
=
[
(
max e1 e2
)
\\ e1
<-
list1
&
e2
<-
list2
]
Start
::
[
Real
]
Start
=
maxArray
[
1.3
,
4.1
,
6.6
,
2.3
,
3.5
]
[
2.1
,
3.3
,
88.9
,-
5.0
,
3.56
]