Skip to content

Update reference functions G to J #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 45 commits into from
Apr 21, 2023
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
922b53b
Update 1457-language-false.markdown
Joe7M Mar 13, 2023
e7f760b
Update 525-console-form.markdown
Joe7M Mar 14, 2023
8219050
Update 525-console-form.markdown
Joe7M Mar 23, 2023
3c9e63a
Update 681-language-gosub.markdown
Joe7M Mar 23, 2023
212972b
Update 682-language-goto.markdown
Joe7M Mar 24, 2023
1d5bea7
Update 780-string-hex.markdown
Joe7M Mar 24, 2023
864856e
Update 773-string-bin.markdown
Joe7M Mar 24, 2023
2ebc98c
Update 789-string-oct.markdown
Joe7M Mar 24, 2023
6be60c0
Update 1525-system-home.markdown
Joe7M Mar 24, 2023
ba6c759
Update 683-language-if.markdown
Joe7M Mar 24, 2023
ab6203c
Update 638-language-iff.markdown
Joe7M Mar 24, 2023
64fdcb6
Update 666-language-imp.markdown
Joe7M Mar 25, 2023
70eec4b
Update 666-language-imp.markdown
Joe7M Mar 25, 2023
ad46687
Merge branch 'smallbasic:master' into master
Joe7M Apr 10, 2023
3fb552d
Update 1441-system-import.markdown
Joe7M Apr 10, 2023
e4d2c61
Update 1446-system-unit.markdown
Joe7M Apr 10, 2023
58d7a1d
Update 1441-system-import.markdown
Joe7M Apr 10, 2023
d40feda
Update 1420-language-to.markdown
Joe7M Apr 13, 2023
9cbaa03
Update 1421-language-step.markdown
Joe7M Apr 13, 2023
cb84335
Update 1424-language-as.markdown
Joe7M Apr 13, 2023
e276854
Update 1429-graphics-showpage.markdown
Joe7M Apr 13, 2023
2781701
Update 667-language-in.markdown
Joe7M Apr 13, 2023
cc8e527
Update 1462-system-include.markdown
Joe7M Apr 14, 2023
e81e6da
Update 539-console-inkey.markdown
Joe7M Apr 14, 2023
0e4046b
Update 590-file-input.markdown
Joe7M Apr 17, 2023
a1444d9
Update 608-file-input.markdown
Joe7M Apr 17, 2023
dd66646
Update 608-file-input.markdown
Joe7M Apr 18, 2023
325b41a
Update 527-console-input.markdown
Joe7M Apr 18, 2023
2f02df6
Update 544-data-insert.markdown
Joe7M Apr 18, 2023
a37154c
Update 781-string-instr.markdown
Joe7M Apr 19, 2023
3d1e669
Update 734-math-int.markdown
Joe7M Apr 19, 2023
f86720f
Update 696-math-intersect.markdown
Joe7M Apr 19, 2023
a6e388b
Update 735-math-inverse.markdown
Joe7M Apr 19, 2023
2f70f3a
Update 555-data-isarray.markdown
Joe7M Apr 19, 2023
1bf6a4a
Update 556-data-isdir.markdown
Joe7M Apr 21, 2023
c2d6a30
Update 557-data-isfile.markdown
Joe7M Apr 21, 2023
18e2ddd
Update 556-data-isdir.markdown
Joe7M Apr 21, 2023
4ed9f92
Update 558-data-islink.markdown
Joe7M Apr 21, 2023
5d51f0a
Update 1430-data-ismap.markdown
Joe7M Apr 21, 2023
ea79bcf
Update 559-data-isnumber.markdown
Joe7M Apr 21, 2023
a05e90c
Update 560-data-isstring.markdown
Joe7M Apr 21, 2023
67a71fa
Update 545-string-join.markdown
Joe7M Apr 21, 2023
25d5e27
Update 577-date-julian.markdown
Joe7M Apr 21, 2023
ddaa788
Update 1446-system-unit.markdown
Joe7M Apr 21, 2023
ac4cdeb
Update 545-string-join.markdown
Joe7M Apr 21, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update 789-string-oct.markdown
  • Loading branch information
Joe7M authored Mar 24, 2023
commit 2ebc98c433e95817735c14119720a859720b8b51
6 changes: 5 additions & 1 deletion _build/reference/789-string-oct.markdown
Original file line number Diff line number Diff line change
@@ -4,4 +4,8 @@

Returns the octal value of x as string.


```
print hex(255) ' output: FF
print bin(8) ' output: 1000
print oct(16) ' output: 20
```