Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
342427ecdeb1ade4f59272414c2e3fe65fe00db1
/
.
/
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
]