Quick Start
Create an object directory inside ~/.local/share/irnix and add a file named method there:
~/.local/share/irnix
└── object
└── method
Contents of the method file:
#!/bin/bash
echo "Hello $1"
Give the file executable permissions:
chmod +x ~/.local/share/irnix/object/method
Invoke the method:
irnix e object.method -- World!
Output:
Hello World!