File: nested_bind_import.yab

package info (click to toggle)
yabasic 1%3A2.90.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,104 kB
  • sloc: ansic: 12,214; sh: 4,417; makefile: 21
file content (16 lines) | stat: -rwxr-xr-x 285 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!./yabasic

import library5
import library7

print library5.foo$()
print library6.bar$()
print library7.qux$()
print thud$()
if (peek("isbound")) then
  exit 0
else
  bind "nested_bind_import"
  system("chmod 755 nested_bind_import")
  exit system("./nested_bind_import")/256
endif