libshell-simple is a minimal debugging version of the shell library, providing a simplified API for testing and development.
shellSimple := import('shell-simple')
{ test: test } := import('shell-simple')
Simple test function that prints "Test" to stdout.
Returns: 0 (success code)
{ test: test } := import('shell-simple')
test()
// Prints: Test
// Returns: 0
This library is primarily used for:
- Debugging: Verify import system works
- Testing: Minimal library for test cases
- Development: Placeholder during development
{ test: test } := import('shell-simple')
result := test()
if result = 0 -> {
println('Test passed')
}
- Minimal implementation (no shell functionality)
- Used for debugging the library system
- Does not include full shell capabilities
- See
shelllibrary for complete shell functionality
- Single test function only
- No actual shell operations
- Debugging/testing only