generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPROJECT_LANG_1.zig
20 lines (15 loc) · 859 Bytes
/
PROJECT_LANG_1.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Start of script
// Warning: I am inexperienced with the Zig programming language, so this is just pseudocode for now
// Project language file 1
// For: Seanpm2001/Zag
// About
// I decided to make Zig the first project language file for this project (Zag) as this is a Zig interpreter project, and Zig needs to be represented here.
pub fn main() !void {
const stdout = std.io.getStdOut().writer();
try stdout.print("Project language file 1, {}!\n", {"For: Seanpm2001/Zag{}!\n"} {"About:"{}!\n}, .{"I decided to make Zig the first project language file for this project (Zag) as this is a Zig interpreter project, and Zig needs to be represented here."});
}
// File info
// File type: Zig source file (*.zig)
// File version: 1 (2022, Monday, January 3rd at 5:58 pm)
// Line count (including blank lines and compiler line): 21
// End of script