commit ca0ed31499195681b865814a7dd41f9214ab6843 Author: narawat Date: Sun Oct 8 11:53:47 2023 +0000 1st commit diff --git a/Project.toml b/Project.toml new file mode 100644 index 0000000..e7c4e78 --- /dev/null +++ b/Project.toml @@ -0,0 +1,4 @@ +name = "ChatAgent" +uuid = "cff63402-b71f-455f-804d-24489fc61e5e" +authors = ["narawat "] +version = "0.1.0" diff --git a/src/ChatAgent.jl b/src/ChatAgent.jl new file mode 100644 index 0000000..c355a15 --- /dev/null +++ b/src/ChatAgent.jl @@ -0,0 +1,5 @@ +module ChatAgent + +greet() = print("Hello World!") + +end # module ChatAgent