16 lines
226 B
Rust
16 lines
226 B
Rust
|
|
struct Product<T> {
|
|
product_id: int,
|
|
name: str,
|
|
price_dkk_cent: int,
|
|
amount: T,
|
|
}
|
|
|
|
struct Receipt {
|
|
receipt_id: int,
|
|
timestamp: str,
|
|
products: Product<int>[],
|
|
}
|
|
|
|
// vim: syntax=rust commentstring=//\ %s
|