post rebranding

This commit is contained in:
Antranig Vartanian 2024-05-11 19:17:23 +04:00
parent 4169aecd5b
commit 95b512baf4
No known key found for this signature in database
GPG key ID: DE3998662D59F21C
66 changed files with 716 additions and 15 deletions

View file

@ -1,47 +0,0 @@
example shows how to implement unix style arguments parsing by using traditional oberon functions from modules Texts and Oberon.
compile
=======
```
make
```
run
===
```
make test
```
or type
```
./partest -str aaa -int 111
```
that should produce the following output
```
hello, world, let's see which arguments do we get
key: str
value: aaa
key: int
value: 111
```
```
./partest -str 000 -int 111
```
the output will be
```
hello, world, let's see which arguments do we get
key: str
string expected
Terminated by Halt(1).
```
that's all folks.