We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nataliapc/mcp-openmsx'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
EXP().md•599 B
# EXP()
## Effect
Returns mathematical constant e (base of the natural logarithm) to the power of a specified number.
## Syntax
`EXP(<Number>)`
## Parameter
`<Number>` must be less or equal 145.06286058562
## Example
```basic
10 PRINT "e to the power of 1 is ";EXP(1)
20 PRINT "e to the power of 0 is ";EXP(0)
30 PRINT "e to the power of 10 is";EXP(10)
RUN
e to the power of 1 is 2.7182818284588
e to the power of 0 is 1
e to the power of 10 is 22026.4657948
```
## Related to
`LOG()`
## Compatibility
MSX-BASIC 1.0 or higher
## Source
Retrieved from "https://www.msx.org/wiki/EXP()"