mirror of
https://github.com/denoland/deno.git
synced 2025-03-04 01:44:26 -05:00
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
![]() |
async function main(): Promise<void> {
|
||
|
const file = await Deno.open("Cargo.toml", "r");
|
||
|
file.close();
|
||
|
await file.seek(10, 0);
|
||
|
}
|
||
|
|
||
|
main();
|