File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ const INITIAL_CODE: Record<Language, string> = {
22
22
python : 'print("Hello, World!")' ,
23
23
java : 'public class Main {\n public static void main(String[] args) {\n System.out.println("Hello, World!");\n }\n}' ,
24
24
go : 'package main\n\nimport "fmt"\n\nfunc main() {\n fmt.Println("Hello, World!")\n}' ,
25
- rust : 'fn main() {\n\tprintln!("Hello world !")\n}'
25
+ rs : 'fn main() {\n\tprintln!("Hello world !")\n}'
26
26
} ;
27
27
28
28
const LANGUAGE_CONFIGS = {
@@ -31,7 +31,7 @@ const LANGUAGE_CONFIGS = {
31
31
python : { label : "Python" , icon : "devicon-python-plain colored" , color : "text-yellow-500" } ,
32
32
java : { label : "Java" , icon : "devicon-java-plain colored" , color : "text-red-500" } ,
33
33
go : { label : "Go" , icon : "devicon-go-plain colored" , color : "text-cyan-500" } ,
34
- rust : { label : "Rust" , icon : "devicon-rust-original colored" , color : "text-red-500" }
34
+ rs : { label : "Rust" , icon : "devicon-rust-original colored" , color : "text-red-500" }
35
35
} ;
36
36
37
37
function App ( ) {
You can’t perform that action at this time.
0 commit comments