Hash :
ba493a11
Author :
Thomas de Grivel
Date :
2025-05-19T14:15:02
translate using chatgpt and reword call
A function or operator call has type Call in KC3. To produce it
you need to quote a call to a function or operator, or you need to
evaluate a call to a cfn that itself returns a Call,
like Tag.from_str.
ikc3> type(quote 1 + 1)
Call
ikc3> type(quote List.count(1000))
Call
Top : KC3 documentation
Previous : 1.05 Callable
Next : 1.07 Character
# 1.6 Call
A function or operator call has type `Call` in KC3. To produce it
you need to quote a call to a function or operator, or you need to
evaluate a call to a cfn that itself returns a `Call`,
like `Tag.from_str`.
## 1.6.1 Examples
```elixir
ikc3> type(quote 1 + 1)
Call
ikc3> type(quote List.count(1000))
Call
```
---
Top : [KC3 documentation](../)
Previous : [1.05 Callable](1.05_Callable)
Next : [1.07 Character](1.07_Character)