mirror of https://github.com/databricks/cli.git
8 lines
100 B
Python
8 lines
100 B
Python
|
import sys
|
||
|
|
||
|
print("hello world!")
|
||
|
print(sys.argv)
|
||
|
|
||
|
for x in spark.range(10).collect():
|
||
|
print(x)
|