Skip to content

Commit

Permalink
add example assets
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Dec 14, 2023
1 parent 0f9250c commit a298e65
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/assets/example.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
int main() {
std::cout << "That will only work with the right plugin in your $PATH!" << std::endl;
std::cout << "Checkout the `external_data_loader` C++ example." << std::endl;
}
4 changes: 4 additions & 0 deletions examples/assets/example.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from __future__ import annotations

print("That will only work with the right plugin in your $PATH!")
print("Checkout the `external_data_loader` Python example.")
1 change: 1 addition & 0 deletions examples/assets/example.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
fn main() {
println!("That will only work with the right plugin in your $PATH!");
println!("Checkout the `external_data_loader` Rust example.");
}

0 comments on commit a298e65

Please sign in to comment.