Diff

Differences From Artifact [d944e8b307]:

To Artifact [bdbaa835f7]:


1
2



3



4
5
6
7
8
9
10
#! /usr/bin/env tclsh




lappend auto_path [file normalize [lindex $argv 0]]




package require nano

proc test_selftest {} {
	::nano::internal::selfTest
	return true
}


>
>
>
|
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /usr/bin/env tclsh

foreach {arg val} $argv {
	switch -exact -- $arg {
		"--libpath" {
			lappend auto_path [file normalize $val]
		}
	}
}

package require nano

proc test_selftest {} {
	::nano::internal::selfTest
	return true
}