Skip to content

upstash/context7test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1,854 Commits
 
 
 
 

Repository files navigation

Auto-generated Test Document

This file is generated for E2E parsing.

Document ID: 7x4jtgoqxwv-mm8c4cds

This document contains a variety of concise, self-contained code examples across multiple programming languages, demonstrating common patterns, data structures, I/O, and control flow to exercise parsing in a realistic yet compact way.

Each example includes a short description followed by a fenced code block.

Where helpful, examples may include brief variations in syntax or structure so the parser encounters a wider range of constructs across different ecosystems.

R: Vector Arithmetic

Simple R vector example computing squares of a sequence.

nums <- 1:5
squares <- nums^2
print(squares)

SQL: Group and Order

SQL query that groups by name and orders by count descending.

SELECT name, COUNT(*) AS c
FROM users
GROUP BY name
ORDER BY c DESC;

Updated Content

This content was added for the refresh test.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages