Skip to content

Commit

Permalink
Refactor VTL code to use comments instead of >>> syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias committed Jan 6, 2024
1 parent 2831319 commit e39672d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
</div>

```v ignore
>>> import vtl
>>> t := vtl.from_array([1.0, 2, 3, 4], [2, 2])!
>>> t.get([1, 1])
4.0
import vtl
t := vtl.from_array([1.0, 2, 3, 4], [2, 2])!
t.get([1, 1])
// 4.0
```

## VTL Provides
Expand Down
2 changes: 1 addition & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import vtl
t := vtl.from_array([1.0, 2, 3, 4], [2, 2])!
t.get([1, 1])
4.0
// 4.0
```

## VTL Provides
Expand Down

0 comments on commit e39672d

Please sign in to comment.