2024-08-30 11:51:36 +02:00
|
|
|
fun execFunction() {
|
2024-08-28 11:25:58 +02:00
|
|
|
print('execFunction')
|
|
|
|
}
|
|
|
|
|
2024-08-30 11:51:36 +02:00
|
|
|
fun execFunctionNested() {
|
|
|
|
fun execFunction() {
|
2024-08-28 11:25:58 +02:00
|
|
|
print('execFunctionNew')
|
|
|
|
}
|
|
|
|
print('execFunctionNested')
|
|
|
|
execFunction()
|
|
|
|
}
|
|
|
|
|
|
|
|
execFunction()
|
|
|
|
execFunctionNested()
|
|
|
|
execFunction()
|
|
|
|
|
|
|
|
print('--------')
|
|
|
|
|
2024-08-30 11:51:36 +02:00
|
|
|
fun secondExecFunction() {
|
2024-08-28 11:25:58 +02:00
|
|
|
print('secondExecFunction')
|
|
|
|
}
|
|
|
|
|
2024-08-30 11:51:36 +02:00
|
|
|
fun secondExecFunctionNested() {
|
2024-08-28 11:25:58 +02:00
|
|
|
print('secondExecFunctionNested')
|
|
|
|
secondExecFunction()
|
|
|
|
}
|
|
|
|
|
|
|
|
secondExecFunction()
|
|
|
|
secondExecFunctionNested()
|
|
|
|
secondExecFunction()
|
|
|
|
|
|
|
|
print('--------')
|
|
|
|
|
|
|
|
let decode := () -> base64Decode
|
|
|
|
let sixtyFour := base64Encode
|
|
|
|
|
|
|
|
print(sixtyFour('http://www.google.com'))
|
|
|
|
print((decode())(sixtyFour('http://www.google.com')))
|
|
|
|
print(decode()(sixtyFour('http://www.google.com')))
|