From de584dcd718b6d55179c00a4ec246f029604ab57 Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Sun, 9 May 2021 13:10:09 -0400 Subject: Add ex079 quoted identifiers --- patches/patches/079_quoted_identifiers.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 patches/patches/079_quoted_identifiers.patch (limited to 'patches') diff --git a/patches/patches/079_quoted_identifiers.patch b/patches/patches/079_quoted_identifiers.patch new file mode 100644 index 0000000..c7bcea8 --- /dev/null +++ b/patches/patches/079_quoted_identifiers.patch @@ -0,0 +1,12 @@ +23,24c23,24 +< const 55_cows: i32 = 55; +< const isn't true: bool = false; +--- +> const @"55_cows": i32 = 55; +> const @"isn't true": bool = false; +27,28c27,28 +< 55_cows, +< isn't true, +--- +> @"55_cows", +> @"isn't true", -- cgit v1.2.3-ZIG