@@ -15,29 +15,39 @@ hero:
1515 image :
1616 src : /tuocan.png
1717 alt : Logo
18- features :
19- - title : AI-Native Architecture
20- details : |
21- - Prompt, embed, and agent are first-class language keywords
18+ # features:
19+ # - title: AI-Native Architecture
20+ # details: |
21+ # - Prompt, embed, and agent are first-class language keywords
2222
23- - Built-in context and memory management
23+ # - Built-in context and memory management
2424
25- - Agentic framework, inspired by OpenAI Swarm
26- icon : 🏃🏻♀️
27- - title : Modern Web Development Simplified
28- details : |
29- - Built-in web server, data validation, database query capabilities
25+ # - Agentic framework, inspired by OpenAI Swarm
26+ # icon: 🏃🏻♀️
27+ # - title: Modern Web Development Simplified
28+ # details: |
29+ # - Built-in web server, data validation, database query capabilities
3030
31- - No more boilerplate code
31+ # - No more boilerplate code
3232
33- - AI tool/agent registry: sharing tools and agents is as easy as publishing a library
34- icon : 📦
35- - title : Easy, elegant, and ergonomic
36- details : |
37- Think of it as a combination of Python's and Rust's strengths while avoiding their weaknesses
33+ # - AI tool/agent registry: sharing tools and agents is as easy as publishing a library
34+ # icon: 📦
35+ # - title: Easy, elegant, and ergonomic
36+ # details: |
37+ # Think of it as a combination of Python's and Rust's strengths while avoiding their weaknesses
3838
39- Compile-time type checking to detect errors and bugs
39+ # Compile-time type checking to detect errors and bugs
4040
41- High performance without unnecessary complexity
42- icon : 🎨
41+ # High performance without unnecessary complexity
42+ # icon: 🎨
4343---
44+
45+ ## AI-Native
46+
47+ Prompt is a first-class language keyword in AIScript.
48+
49+ ``` rs
50+ let answer = prompt " What's moon of Pluto?" ;
51+ print (answer );
52+ // The moon of Pluto is Charon.
53+ ```
0 commit comments