Update BazzBasic-AI-guide.txt
Browse files- BazzBasic-AI-guide.txt +33 -0
BazzBasic-AI-guide.txt
CHANGED
|
@@ -67,6 +67,39 @@
|
|
| 67 |
|
| 68 |
- Kristian Virtanen (EkBass), author of BazzBasic
|
| 69 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
## Variables & Constants
|
| 71 |
|
| 72 |
```basic
|
|
|
|
| 67 |
|
| 68 |
- Kristian Virtanen (EkBass), author of BazzBasic
|
| 69 |
|
| 70 |
+
## IDE & CLI
|
| 71 |
+
|
| 72 |
+
Run `BazzBasic.exe` without any arguments to open the IDE.
|
| 73 |
+
|
| 74 |
+
## Editor Features
|
| 75 |
+
|
| 76 |
+
- **Syntax highlighting** for BazzBasic keywords
|
| 77 |
+
- **Line numbers** for easy navigation
|
| 78 |
+
- **Multiple tabs** for working with several files
|
| 79 |
+
|
| 80 |
+
## Keyboard Shortcuts & Menu Map
|
| 81 |
+
|
| 82 |
+
| Menu | Shortcut | Action | CLI option |
|
| 83 |
+
|----------|--------|--------|--------|
|
| 84 |
+
| File | Ctrl+N | New file | BazzBasic.exe |
|
| 85 |
+
| File | Ctrl+O | Open file | none |
|
| 86 |
+
| File | Ctrl+S | Save file | none |
|
| 87 |
+
| File | Ctrl+Shift+S | Save As | none |
|
| 88 |
+
| File | Ctrl+W | Close tab | none |
|
| 89 |
+
| File | Alt + F4 | Exit | none |
|
| 90 |
+
| Edit | Ctrl+F | Find | none |
|
| 91 |
+
| Edit | Ctrl+H | Replace | none |
|
| 92 |
+
| Run | F5 | Run Program | BazzBasic.exe file.bas |
|
| 93 |
+
| Run | none | Compile as Exe | BazzBasic.exe -exe file.bas |
|
| 94 |
+
| Run | none | Compile as Library (.bb) | BazzBasic.exe -lib file.bas |
|
| 95 |
+
| Help | none | About | BazzBasic.exe -v |
|
| 96 |
+
| Help | none | Beginner's Guide[1] | BazzBasic.exe -guide[2] |
|
| 97 |
+
| Help | none | Check For Updates[3] | BazzBasic.exe -checkupdates |
|
| 98 |
+
|
| 99 |
+
**[1]** Opens [BazzBasic-Beginners-Guide/releases](https://github.com/EkBass/BazzBasic-Beginners-Guide/releases) in default www-browser.
|
| 100 |
+
**[2]** *BazzBasic.exe -guide* and *BazzBasic.exe -help* both works.
|
| 101 |
+
**[3]** Just informs about the update, will not perform it.
|
| 102 |
+
|
| 103 |
## Variables & Constants
|
| 104 |
|
| 105 |
```basic
|