Sort a list of object identifiers: Difference between revisions

Content added Content deleted
m (Reformatted to reduce line count)
No edit summary
Line 1,213: Line 1,213:
"1.3.6.1.4.1.11150.3.4.0.1"
"1.3.6.1.4.1.11150.3.4.0.1"
</pre>
</pre>

=={{header|Phixmonti}}==
<lang Phixmonti>include ..\Utilitys.pmt

( "1.3.6.1.4.1.11.2.17.19.3.4.0.10"
"1.3.6.1.4.1.11.2.17.5.2.0.79"
"1.3.6.1.4.1.11.2.17.19.3.4.0.4"
"1.3.6.1.4.1.11150.3.4.0.1"
"1.3.6.1.4.1.11.2.17.19.3.4.0.1"
"1.3.6.1.4.1.11150.3.4.0" )

len for
var i
i get "." " " subst split
len for
var j
j get tonum j set
endfor
i set
endfor

sort

len for get print nl endfor
</lang>


=={{header|PicoLisp}}==
=={{header|PicoLisp}}==