Remove temporary _test_fmt directories

This commit is contained in:
2026-06-05 21:05:05 +03:00
parent db9025f3a3
commit 459e4fb6db
6 changed files with 0 additions and 26 deletions
-1
View File
@@ -1 +0,0 @@
[Package]
-4
View File
@@ -1,4 +0,0 @@
module Test {
func Fmt(a: String) -> String { return a; }
func Fmt(a: int) -> String { return "int"; }
}
-1
View File
@@ -1 +0,0 @@
[Package]
-8
View File
@@ -1,8 +0,0 @@
import Std::Io::{PrintLine};
import Std::String::{String_Format1, String_FromInt};
func Main() -> int {
let s: String = String_Format1("Hello, {0}!", "World");
PrintLine(s);
return 0;
}
-1
View File
@@ -1 +0,0 @@
[Package]
-11
View File
@@ -1,11 +0,0 @@
import Std::Io::{PrintLine};
import Std::Fmt;
func Main() -> int {
PrintLine(Fmt_Fmt1("Hello, {0}!", "World"));
PrintLine(Fmt_FmtInt("Count: {0}", 42));
PrintLine(Fmt_FmtFloat("Pi: {0}", 3.14159));
PrintLine(Fmt_FmtBool("Active: {0}", true));
PrintLine(Fmt_Fmt2("Name: {0}, Age: {1}", "Bux", String_FromInt(5)));
return 0;
}