Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
Duplicated from
danielsanjosepro/first-humanoid-dataset
skyzos
/
first-humanoid-dataset
like
0
Tasks:
Robotics
Modalities:
Tabular
Text
Time-series
+ 1
Formats:
parquet
Size:
1K - 10K
Tags:
LeRobot
Libraries:
Datasets
Dask
Polars
+ 1
License:
apache-2.0
Dataset card
Data Studio
Files
Files and versions
xet
Community
main
first-humanoid-dataset
/
nvim-linux-x86_64
/
share
/
nvim
/
runtime
/
indent
/
testdir
/
bash.ok
skyzos
Duplicate from danielsanjosepro/first-humanoid-dataset
62af3c4
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
223 Bytes
#!/bin/bash
# vim: set ft=bash sw=2 noet:
# START_INDENT
a = 10
b = 20
function
add
() {
c = $((a + b))
}
function
print
{
# do nothing
}
if
[[
$c
-ge 15 ]];
then
print
(
"ok"
)
else
print
(
"not ok"
)
fi
# END_INDENT