We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chrisgreenx-ctrl/serena'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.f90•334 B
program test_program
use math_utils
implicit none
real :: result
! Test addition
result = add_numbers(5.0, 3.0)
call print_result(result)
! Test multiplication
result = multiply_numbers(4.0, 2.0)
call print_result(result)
print *, "All tests completed"
end program test_program