Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
xieguigang committed Jan 4, 2024
1 parent 1834df3 commit 4ab3fac
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,20 @@ <h1><span
href="https://www.r-project.org/">R</a> liked vectorized language
implements on .NET clr environment for the bioinformatics data analysis.</p>
<a class="read_more" href="get-starts.html">Get Starts</a>

<p>
<pre>
<code id="hello_r">
#' print hello world
const hello = function(word) {
print(`hello ${word}!`);
}

hello(["world", "R# language"]);
# [1] "hello world!" "hello R# language!"
</code>
</pre>
</p>
</div>
</div>
<div class="col-md-7">
Expand Down Expand Up @@ -189,6 +203,11 @@ <h2>About R#</h2>
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/jquery-3.0.0.min.js"></script>
<script src="assets/js/custom.js"></script>

<script src="assets/js/R_syntax.js"></script>
<script src="assets/js/highlights.js"></script>

<script type="text/javascript"> r_highlights("hello_r"); </script>
</body>

</html>

0 comments on commit 4ab3fac

Please sign in to comment.