You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,12 +112,27 @@ To include `micrograd` in your Zig project, follow these steps:
112
112
113
113
## Usage
114
114
115
-
micrograd is designed to be easy to use. You can include the library in your Zig project by adding the following line to your source files:
115
+
`micrograd` is designed to be easy to use. You can include the library in your Zig project by adding the following line to your source files:
116
116
117
117
```zig
118
118
const micrograd = @import("micrograd");
119
119
```
120
120
121
+
<!-- PROJECT FILE STRUCTURE -->
122
+
## Project Structure
123
+
124
+
```sh
125
+
micrograd/
126
+
├── .github/ # GitHub Actions CI/CD workflows
127
+
├── src/ # Library source files
128
+
│ ├── lib.zig # Public API entry point
129
+
│ └── ...
130
+
├── build.zig # Zig build script
131
+
├── build.zig.zon # Zig build script dependencies
132
+
├── LICENSE # Project license
133
+
└── README.md # You are here
134
+
```
135
+
121
136
## License
122
137
123
138
The source code for [Kaweees/micrograd](https://github.com/Kaweees/micrograd) is distributed under the terms of the MIT License, as I firmly believe that collaborating on free and open-source software fosters innovations that mutually and equitably beneficial to both collaborators and users alike. See [`LICENSE`](./LICENSE) for details and more information.
0 commit comments