We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57bf192 commit 3f68561Copy full SHA for 3f68561
README.md
@@ -9,7 +9,7 @@ fn main() {
9
plt := umplot.init(4)
10
11
for i := 0; i < 4; i++ {
12
- plt.series[i].name = "Sine wave " + repr(i + 1)
+ plt.series[i].name = sprintf("Sine wave %d", i + 1)
13
14
for x := 0.0; x <= 100.0; x += 1.0 {
15
y := (1 + 0.5 * i) * sin(x / 10.0 + i)
build_umplot_linux.sh
@@ -1,2 +1,2 @@
1
-gcc -O3 -fPIC umplot.c -o umplot.umi -shared -static-libgcc -L$PWD -lm -lraylib -lumka -lpthread
+gcc -O3 -fPIC umplot.c -o umplot_linux.umi -shared -static-libgcc -L$PWD -lm -lraylib -lumka_static -lpthread
2
0 commit comments