motys is aimed to be small and concise and offers a small well rounded stdlib.
it should be very easily portable and its file size should reflect the complexity of the program.
echo "hello world" | motys -e 'print "$1\n"'
or in a script:
print "hello world\n"
var template_str = 'Hello, {name}!'
var name = get STDIN
printn $"template_str"