Musa
Musa A Virologist with passion on data and bioinformatics.

New Post

New Post

Once you have finished with me, you can create new files by opening the file explorer on the left corner of the navigation bar.

1
2
3
#Julia Code
a = 5
println(a)
1
2
3
#R Code
a <- 5
print(a)
Syntax Description
Header Title
Paragraph Text

Syntax Description Test Text
Header Title Here’s this
Paragraph Text And more
1
2
3
4
5
6
7
8
9
10
11
12
13
mutable struct dog
	breed::String
	paws::Int
	name::String
	weight::Float64
           
	function dog(breed, name, weight, paws=4)
		new(breed, paws, name, weight)
	end
end

new_dog = dog("German Shepard", "Champ", 46)
dog("German Shepard", 4, "Champ", 46.0)