Current section

Files

Jump to
aws_runtime lib aws_runtime.ex
Raw

lib/aws_runtime.ex

defmodule AwsRuntime do
@moduledoc """
Documentation for `AwsRuntime`.
"""
@doc """
Hello world.
## Examples
iex> AwsRuntime.hello()
:world
"""
def hello do
:world
end
end