Go to https://github.com/bzjsmdl/Seed-Language/releases to download it.
// hello.seed:
#import <io.sdh>
sec .data {
s: byte "Hello, World!";
}
sec .text {
pub main{ // Windows 64
print s;
}
}seed -f ./hello.seed -o pe ./hello.exe
./hello.exeHello, World!
File hello.seed difined two sections(.text, .data).
In the Data Segment, I difined a string s.
In the Text Segment, I deined a label of entry pinter main.
The label main called a macro print of standard library io.sdh