This website requires JavaScript.
Explore
Help
Sign In
mirror
/
RosettaCodeData
mirror of
https://github.com/acmeism/RosettaCodeData.git
Watch
1
Star
0
Fork
You've already forked RosettaCodeData
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
main
RosettaCodeData
/
Task
/
Function-composition
/
AutoHotkey
/
function-composition.ahk
6 lines
99 B
AutoHotkey
Raw
Permalink
Blame
History
MsgBox
%
compose
(
"
sin
"
,
"
cos
"
,
1.5
)
compose
(
f
,
g
,
x
)
{
; function composition
Return
%f%
(
%g%
(
x
)
)
}
Reference in New Issue
View Git Blame
Copy Permalink