mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-03 01:58:41 +08:00
Use hell-redox recipe
This commit is contained in:
parent
5f32a00aff
commit
db8641a109
@ -12,60 +12,4 @@ prompt = false
|
||||
# Package settings
|
||||
[packages]
|
||||
dev-redox = {}
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/hello-redox/test.rs"
|
||||
data = """
|
||||
fn main() {
|
||||
println!("Hello, Redox!");
|
||||
}
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/hello-redox/test.c"
|
||||
data = """
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
printf("Hello, Redox!\\n");
|
||||
}
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/hello-redox/test.cpp"
|
||||
data = """
|
||||
#include <iostream>
|
||||
|
||||
int main()
|
||||
{
|
||||
std::cout << "Hello, Redox!" << std::endl;
|
||||
}
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/hello-redox/test.py"
|
||||
data = """
|
||||
print("Hello, Redox!")
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/hello-redox/test.lua"
|
||||
data = """
|
||||
print("Hello, Redox!")
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/hello-redox/test.js"
|
||||
data = """
|
||||
console.log("Hello Redox");
|
||||
"""
|
||||
|
||||
[[files]]
|
||||
path = "/home/user/hello-redox/test.java"
|
||||
data = """
|
||||
public class Java {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Hello Redox");
|
||||
}
|
||||
}
|
||||
"""
|
||||
hello-redox = {}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user