use crate;
/// Represents a `continue` node in py_sql.
/// It's used to skip the current iteration of a loop and proceed to the next one, typically within a `foreach` block.
///
/// # Example
///
/// PySQL syntax:
/// ```py
/// for item in collection:
/// if item == 'skip_this':
/// continue
/// # process item
/// ```