cli.hpp
Go to the documentation of this file.
1
2#pragma once
3
5
6namespace by {
7
12 struct cli {
13 const flags& getFlags() const;
14
15 nbool run(flagArgs& a);
16
17 nint getRes() const;
18
19 private:
20 nint _res;
21 };
22}
Command-line interface for byeol language system.
Definition: cli.hpp:12